Index: LayoutTests/fast/dom/Range/create-contextual-fragment-from-bodyless-document-range.html |
diff --git a/LayoutTests/fast/dom/Range/create-contextual-fragment-from-bodyless-document-range.html b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-bodyless-document-range.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..009d1f02bba17c7100f60bb375ba396838f5bf1b |
--- /dev/null |
+++ b/LayoutTests/fast/dom/Range/create-contextual-fragment-from-bodyless-document-range.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<p>Test of createContextualFragment from a Range whose context is an HTML document without a body. If the test succeeds you will see the word "PASS" below.</p> |
+<p id="result"></p> |
+<script> |
+if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ |
+var doc = document.implementation.createHTMLDocument(); |
+var div = doc.createElement('div'); |
+doc.replaceChild(div, doc.documentElement); |
+ |
+var range = doc.createRange(); |
+var fragment = range.createContextualFragment('<p id="fragment">Inserted fragment</p>'); |
+div.appendChild(fragment); |
+var p = doc.getElementById('fragment'); |
+ |
+var result = document.getElementById('result'); |
+result.textContent = (p && p.parentElement === div && p.namespaceURI === 'http://www.w3.org/1999/xhtml') ? 'PASS' : 'FAIL'; |
+</script> |
+ |