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

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

Issue 115693010: Fix Range.createContextualFragment for non-Element contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Handle SVG elements. Created 7 years 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-document-range.xhtml
diff --git a/LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-document-range.xhtml b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-document-range.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..6e17a3b89c73eb325495e7479be439acfff64077
--- /dev/null
+++ b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-xhtml-document-range.xhtml
@@ -0,0 +1,23 @@
+<?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 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 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) ? 'PASS' : 'FAIL';
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698