- From: Aryeh Gregor <notifications@github.com>
- Date: Tue, 11 Aug 2015 11:09:24 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Message-ID: <whatwg/dom/issues/63@github.com>
Test-case: ```html <!doctype html> foo <script> var range = document.creteRange(); range.setStart(document.body.firstChild, 1); var s = "Body children before: " + document.body.childNodes.length; try { range.insertNode(range.startContainer); document.body.textContent = s + ", after: " + document.body.childNodes.length; } catch (e) { document.body.textContent = "Exception"; } </script> ``` Firefox outputs "Body children before: 2, after: 3", which matches the spec: there is no special handling of this case, and it winds up happily splitting the text node, then removing the first text node and re-inserting it back where it was, leaving the first portion no longer selected. Chrome throws. IE is the same as Firefox, but if you change the offset from 1 to 0 it outputs "Body children before: 2, after: 2", so it probably just aborts silently in that case. IE/Firefox's behavior is just silly, and Chrome's seems a bit harsh. I'm inclined to go with Chrome, out of the options available. Failing that, I'd go with IE and at least special-case the scenario where we create an empty text node. Firefox (which is the current spec) would be my last choice. --- Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/issues/63
Received on Tuesday, 11 August 2015 18:14:24 UTC