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

Unified Diff: LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range.html

Issue 115693010: Fix Range.createContextualFragment for non-Element contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range.html
diff --git a/LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range.html b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range.html
new file mode 100644
index 0000000000000000000000000000000000000000..4ff715d3e29f43af213a7ce57d334048f527a8ba
--- /dev/null
+++ b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<p>Test of createContextualFragment from a Range whose context is a text node belonging to an element. If the test succeeds you will see the word "PASS" below.</p>
+<p id="result"></p>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+
+var textNode = document.createTextNode("Text node that belongs to an element");
+var textNodeParent = document.createElement('p');
+textNodeParent.appendChild(textNode);
+
+var range = document.createRange();
+range.setStart(textNode, 0);
+var fragment = range.createContextualFragment('<p id="fragment">Inserted fragment</p>');
+document.body.appendChild(fragment);
+var p = document.getElementById('fragment');
+
+var result = document.getElementById('result');
+result.textContent = (p && p.parentElement === document.body && p.namespaceURI === 'http://www.w3.org/1999/xhtml') ? 'PASS' : 'FAIL';
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Range/create-contextual-fragment-from-attached-text-node-range-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698