| <!DOCTYPE html> |
| <p>Test of createContextualFragment from a Range whose context is a 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('<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> |