bugzilla-83979.svg 645 B

12345678910111213141516
  1. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  2. <defs>
  3. <filter id="ds2">
  4. <feGaussianBlur id="blur" result="blur"/>
  5. </filter>
  6. </defs>
  7. <text x="50" y="50">This test passes if it does not crash after load in Debug builds.</text>
  8. <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)"/>
  9. <script><![CDATA[
  10. for (var i = 0; i < 10000; i++) {
  11. }
  12. document.getElementById("blur").appendChild(document.getElementById("image").cloneNode());
  13. for (var i = 0; i < 10000; i++) {
  14. }
  15. ]]></script>
  16. </svg>