OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" onload="runRepaintTest()"> | 2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin
k" onload="runRepaintTest()"> |
3 <script xlink:href="../../fast/repaint/resources/repaint.js"></script> | 3 <script xlink:href="../../fast/repaint/resources/repaint.js"></script> |
4 <defs> | 4 <defs> |
5 <rect id="rect" fill="green" width="50" height="50" transform="rotate(45
)"> | 5 <rect id="rect" fill="green" width="50" height="50" transform="rotate(45
)"> |
6 <animateTransform id="animation" attributeName="transform" type="rot
ate" calcMode="discrete" begin="indefinite" from="45" to="0" dur="0.1s" fill="fr
eeze"/> | 6 <animateTransform id="animation" attributeName="transform" type="rot
ate" calcMode="discrete" begin="indefinite" from="45" to="0" dur="0.1s" fill="fr
eeze"/> |
7 </rect> | 7 </rect> |
8 | 8 |
9 <filter id="filter"> | 9 <filter id="filter"> |
10 <feImage xlink:href="#rect"/> | 10 <feImage xlink:href="#rect"/> |
(...skipping 16 matching lines...) Expand all Loading... |
27 setTimeout(finishTest, 50); | 27 setTimeout(finishTest, 50); |
28 return; | 28 return; |
29 } | 29 } |
30 | 30 |
31 if (window.testRunner) | 31 if (window.testRunner) |
32 testRunner.notifyDone(); | 32 testRunner.notifyDone(); |
33 } | 33 } |
34 } | 34 } |
35 | 35 |
36 if (window.testRunner) | 36 if (window.testRunner) |
37 testRunner.dumpAsText(true); | 37 testRunner.dumpAsTextWithPixelResults(); |
38 ]]></script> | 38 ]]></script> |
39 </svg> | 39 </svg> |
OLD | NEW |