| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <!-- Test for WK97500 - this test passes if it does not crash. --> | 3 <!-- Test for WK97500 - this test passes if it does not crash. --> |
| 4 <script> | 4 <script> |
| 5 if (window.testRunner) { | 5 if (window.testRunner) { |
| 6 testRunner.waitUntilDone(); | 6 testRunner.waitUntilDone(); |
| 7 setTimeout(function() { | 7 setTimeout(function() { |
| 8 document.write("PASS - This test passes if it did not crash."); | 8 document.write("PASS - This test passes if it did not crash."); |
| 9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
| 10 testRunner.notifyDone(); | 10 testRunner.notifyDone(); |
| 11 }, 1); | 11 }, 1); |
| 12 } | 12 } |
| 13 </script> | 13 </script> |
| 14 <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/sv
g" width="300" height="300"> | 14 <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/sv
g" width="300" height="300"> |
| 15 <defs> | 15 <defs> |
| 16 <filter id="erode1" filterUnits="objectBoundingBox" x="0" y="0" width="1
000" height="1000"> | 16 <filter id="erode1" filterUnits="objectBoundingBox" x="0" y="0" width="1
000" height="1000"> |
| 17 <feMorphology operator="erode" radius="1" width="2000" height="10000
0"/> | 17 <feMorphology operator="erode" radius="1" width="2000" height="10000
0"/> |
| 18 </filter> | 18 </filter> |
| 19 <g id="morphologySource"> | 19 <g id="morphologySource"> |
| 20 <rect x="0" y="0" width="2000" height="100000"/> | 20 <rect x="0" y="0" width="2000" height="100000"/> |
| 21 </g> | 21 </g> |
| 22 </defs> | 22 </defs> |
| 23 <use xlink:href="#morphologySource" x="350" y="100" filter="url(#erode1)"/> | 23 <use xlink:href="#morphologySource" x="350" y="100" filter="url(#erode1)"/> |
| 24 </svg> | 24 </svg> |
| 25 </html> | 25 </html> |
| OLD | NEW |