| OLD | NEW |
| 1 <svg> | 1 <svg> |
| 2 <filter id="filter"> | 2 <filter id="filter"> |
| 3 <feDiffuseLighting> | 3 <feDiffuseLighting> |
| 4 <feSpotLight> | 4 <feSpotLight> |
| 5 <animate id="animate" attributeName="limitingConeAngle" from="0" to="1" du
r="1s" repeatCount="indefinite"> | 5 <animate id="animate" attributeName="limitingConeAngle" from="0" to="1" du
r="1s" repeatCount="indefinite"> |
| 6 </feSpotLight> | 6 </feSpotLight> |
| 7 </feDiffuseLighting> | 7 </feDiffuseLighting> |
| 8 </filter> | 8 </filter> |
| 9 <rect id="rect" width="1" height="1" filter="url(#filter)"> | 9 <rect id="rect" width="1" height="1" filter="url(#filter)"> |
| 10 </svg> | 10 </svg> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 return | 33 return |
| 34 } | 34 } |
| 35 | 35 |
| 36 setTimeout(runTest, 0) | 36 setTimeout(runTest, 0) |
| 37 } | 37 } |
| 38 | 38 |
| 39 runTest() | 39 runTest() |
| 40 } | 40 } |
| 41 </script> | 41 </script> |
| 42 <p>This test moves an animated filter target. The test will display a message be
low if successful.</p> | 42 <p>This test moves an animated filter target. The test will display a message be
low if successful.</p> |
| OLD | NEW |