OLD | NEW |
1 <html>This test passes if a malformed html document triggers an error, not crash
. | 1 <html>This test passes if a malformed html document triggers an error, not crash
. |
2 <svg xmlns="http://www.w3.org/2000/svg" | 2 <svg xmlns="http://www.w3.org/2000/svg" |
3 xmlns:xlink="http://www.w3.org/1999/xlink" | 3 xmlns:xlink="http://www.w3.org/1999/xlink" |
4 onload="restyle()"> | 4 onload="restyle()"> |
5 <script> | 5 <script> |
6 if (window.testRunner) | 6 if (window.testRunner) |
7 testRunner.dumpAsText(); | 7 testRunner.dumpAsText(); |
8 function restyle() { | 8 function restyle() { |
9 document.getElementById("b").style.position = "absolute"; | 9 document.getElementById("b").style.position = "absolute"; |
10 } | 10 } |
11 </script> | 11 </script> |
12 <defs> | 12 <defs> |
13 <g id="a" /> | 13 <g id="a" /> |
14 </defs> | 14 </defs> |
15 <g id="b"> | 15 <g id="b"> |
16 <use xlink:href="#a" /> | 16 <use xlink:href="#a" /> |
17 </g> | 17 </g> |
18 </svg> | 18 </svg> |
OLD | NEW |