Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: LayoutTests/fast/dom/Range/selectNode-for-detached-node.html

Issue 23071006: Make Range::selectNode() and Range::surroundContents() to work with detached node (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-08-22T18:44:46 Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/Range/selectNode-for-detached-node.html
diff --git a/LayoutTests/fast/dom/Range/selectNode-for-detached-node.html b/LayoutTests/fast/dom/Range/selectNode-for-detached-node.html
new file mode 100644
index 0000000000000000000000000000000000000000..6e4c4de79d59fdff92db95c6085e1be35882dea8
--- /dev/null
+++ b/LayoutTests/fast/dom/Range/selectNode-for-detached-node.html
@@ -0,0 +1,20 @@
+<div id="container">
+<p id="description"></p>
+<div id="sample">0123456789</div>
+</div>
+<div id="console"></div>
+<script src="../../js/resources/js-test-pre.js"></script>
+<script>
+description('Range.selectNode() should not throw exception for detached node.');
+function $(id) { return document.getElementById(id); }
+
+var sample = $('sample').cloneNode(true);
+var range = document.createRange();
+
+shouldBe('range.selectNode(sample.firstChild); range.startContainer', 'sample');
+shouldThrow('range.selectNode(sample); range.startContainer', '"InvalidNodeTypeError: Failed to execute \'selectNode\' on \'Range\': the given Node has no parent."');
+
+if (window.testRunner)
+ $('container').outerHTML = '';
+</script>
+<script src="../../js/resources/js-test-post.js"></script>

Powered by Google App Engine
This is Rietveld 408576698