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

Unified Diff: LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-html-element-range.xhtml

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
Index: LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-html-element-range.xhtml
diff --git a/LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-html-element-range.xhtml b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-html-element-range.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..02eae9fd327390c1bb30baa2175eace0797a6463
--- /dev/null
+++ b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-html-element-range.xhtml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>createContextualFragment from XHTML Document range.</title>
+</head>
+<body>
+<p>Test of createContextualFragment from a Range whose context is an &lt;html&gt; element in an XHTML document. If the test succeeds you will see the word "PASS" below.</p>
+<p id="result"></p>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+
+var range = document.createRange();
+var html = document.getElementsByTagName('html')[0];
+range.setStart(html, 0);
+var fragment = range.createContextualFragment('&lt;p id="frag">Inserted fragment&lt;/p>');
+document.body.appendChild(fragment);
+var p = document.getElementById('frag');
+
+var result = document.getElementById('result');
+result.textContent = (p &amp;&amp; p.parentElement === document.body &amp;&amp; p.namespaceURI === 'http://www.w3.org/1999/xhtml') ? 'PASS' : 'FAIL';
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698