blob: 4ff715d3e29f43af213a7ce57d334048f527a8ba [file] [log] [blame]
<!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>