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