OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Test of createContextualFragment from a Range whose context is an <html>
; element. If the test succeeds you will see the word "PASS" below.</p> |
| 3 <p id="result"></p> |
| 4 <script> |
| 5 if (window.testRunner) |
| 6 testRunner.dumpAsText(); |
| 7 |
| 8 var range = document.createRange(); |
| 9 var html = document.getElementsByTagName('html')[0]; |
| 10 range.setStart(html, 0); |
| 11 var fragment = range.createContextualFragment('<p id="fragment">Inserted fragmen
t</p>'); |
| 12 document.body.appendChild(fragment); |
| 13 var p = document.getElementById('fragment'); |
| 14 |
| 15 var result = document.getElementById('result'); |
| 16 result.textContent = (p && p.parentElement === document.body && p.namespaceURI =
== 'http://www.w3.org/1999/xhtml') ? 'PASS' : 'FAIL'; |
| 17 </script> |
OLD | NEW |