RESOLVED DUPLICATE of bug 149490148767
Range.selectNode cannot select a detached node
https://bugs.webkit.org/show_bug.cgi?id=148767
Summary Range.selectNode cannot select a detached node
Ryosuke Niwa
Reported 2015-09-03 18:32:32 PDT
var div = document.createElement('div'); div.appendChild(document.createElement('p')); var range = document.createRange(); range.selectNode(div.firstChild); throws a INVALID_NODE_TYPE_ERROR but it shouldn't. The problem is that checkNodeBA throws this exception when the root node of refNode is not a document, a document fragment, or an Attr node. This bug was found by the newly added LayoutTests/http/tests/w3c/dom/ranges/Range-selectNode.html
Attachments
Radar WebKit Bug Importer
Comment 1 2015-09-03 18:33:34 PDT
Chris Dumez
Comment 2 2015-09-24 16:58:59 PDT
*** This bug has been marked as a duplicate of bug 149490 ***
Note You need to log in before you can comment on or make changes to this bug.