OLD | NEW |
---|---|
(Empty) | |
1 <svg> | |
rwlbuis
2014/06/11 19:54:21
Usually we have a more complete document element,
kouhei (in TOK)
2014/06/12 01:24:53
This was meant to be html5 inline svg tag. Added h
| |
2 <!-- animate element is destructed before rect elements --> | |
3 <animate xlink:href="#rect" attributeName="x" attributeType="XML" begin="0s" d ur="10s" fill="freeze" from="0" to="100" /> | |
4 <g id="usetarget"> | |
5 <rect id="rect" x="10" y="10" width="10" height="10" fill="red"></rect> | |
6 </g> | |
7 <use xlink:href="#usetarget"></use> | |
8 </svg> | |
9 <p>Test pass if unloading this document does not fail ASSERTs on debug builds.</ p> | |
rwlbuis
2014/06/11 19:54:21
"Test passes"
kouhei (in TOK)
2014/06/12 01:24:53
Done.
| |
10 <script> | |
11 // This test doesn't use js-test.js to avoid unexpected DOM references. | |
12 if (window.testRunner) | |
13 testRunner.dumpAsText(); | |
14 </script> | |
OLD | NEW |