| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> |
| <defs> |
| <filter id="ds2"> |
| <feGaussianBlur id="blur" result="blur"/> |
| </filter> |
| </defs> |
| <text x="50" y="50">This test passes if it does not crash after load in Debug builds.</text> |
| <image id="image" xlink:href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect/%3E%3C/svg%3E" width="50" height="50" filter="url(#ds2)"/> |
| <script><![CDATA[ |
| for (var i = 0; i < 10000; i++) { |
| } |
| document.getElementById("blur").appendChild(document.getElementById("image").cloneNode()); |
| for (var i = 0; i < 10000; i++) { |
| } |
| ]]></script> |
| </svg> |