| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <head> | 2 <head> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <div id="container"><FOO><foo><linearGradient/></foo></FOO><img/></div> | 6 <div id="container"><FOO><foo><linearGradient/></foo></FOO><img/></div> |
| 7 | 7 |
| 8 <script><![CDATA[ | 8 <script><![CDATA[ |
| 9 if (window.testRunner) | 9 if (window.testRunner) |
| 10 testRunner.dumpAsText(); | 10 testRunner.dumpAsText(); |
| 11 | 11 |
| 12 var container = document.getElementById('container'); | 12 var container = document.getElementById('container'); |
| 13 var svgdoc = new DOMParser().parseFromString( | 13 var svgdoc = new DOMParser().parseFromString( |
| (...skipping 24 matching lines...) Expand all Loading... |
| 38 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'line
argradient').length", "0"); | 38 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'line
argradient').length", "0"); |
| 39 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'LINE
ARGRADIENT').length", "0"); | 39 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'LINE
ARGRADIENT').length", "0"); |
| 40 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'FOO'
).length", "1"); | 40 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'FOO'
).length", "1"); |
| 41 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'foo'
).length", "1"); | 41 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'foo'
).length", "1"); |
| 42 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'Foo'
).length", "0"); | 42 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'Foo'
).length", "0"); |
| 43 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'img'
).length", "1"); | 43 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'img'
).length", "1"); |
| 44 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'IMG'
).length", "0"); | 44 shouldBe("container.getElementsByTagNameNS('http://www.w3.org/1999/xhtml', 'IMG'
).length", "0"); |
| 45 ]]></script> | 45 ]]></script> |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| OLD | NEW |