OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Test of createContextualFragment from a Range whose container is an SVG docum
ent. 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 testRunner.waitUntilDone(); |
| 8 } |
| 9 |
| 10 function onSvgLoad() |
| 11 { |
| 12 window.svgDocument = document.getElementById('container').getSVGDocument(); |
| 13 window.range = svgDocument.createRange(); |
| 14 window.fragment = range.createContextualFragment('<text id="fragment" x="0"
y="16" fontsize="16">Inserted fragment</text>'); |
| 15 window.svg = svgDocument.firstElementChild; |
| 16 svg.appendChild(fragment); |
| 17 window.text = svgDocument.getElementById('fragment'); |
| 18 |
| 19 window.result = document.getElementById('result'); |
| 20 result.textContent = (text && text.parentElement === svg && text.namespaceUR
I === 'http://www.w3.org/2000/svg') ? 'PASS' : 'FAIL'; |
| 21 |
| 22 if (window.testRunner) |
| 23 testRunner.notifyDone(); |
| 24 } |
| 25 </script> |
| 26 <embed id="container" src="resources/svg-document.svg" onload="onSvgLoad();" /> |
| 27 </embed> |
OLD | NEW |