Loading…
See: http://jsbin.com/lonuhi/edit?html,output
This occurs because when an element is added without removal, its composed data is incorrectly removed from its light parent rather than its composed parent.
At https://github.com/Polymer/polymer/blob/master/src/lib/dom-api.html#L292, node._composedParent should be used.
Fixes #2311, #2323: when elements are removed from their previous pos…
…ition when they are added elsewhere, make sure to remove them from composed, not logical parent.
3d93116
Fixed via aa3b9cc
See: http://jsbin.com/lonuhi/edit?html,output
This occurs because when an element is added without removal, its composed data is incorrectly removed from its light parent rather than its composed parent.
At https://github.com/Polymer/polymer/blob/master/src/lib/dom-api.html#L292, node._composedParent should be used.