diff options
Diffstat (limited to 'dom/svg/crashtests/1572904.html')
-rw-r--r-- | dom/svg/crashtests/1572904.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/svg/crashtests/1572904.html b/dom/svg/crashtests/1572904.html new file mode 100644 index 0000000000..8aaeeff6c9 --- /dev/null +++ b/dom/svg/crashtests/1572904.html @@ -0,0 +1,15 @@ +<script> +function go() { + a.addEventListener("DOMSubtreeModified", go) + b.setAttribute("y", "") + SpecialPowers.gc() + SpecialPowers.forceCC() + try { c.viewBox.animVal[undefined] = ''} catch(e) { } + try { c.viewBox.animVal.x; } catch(e) { } +} +</script> +<filter id="a"> +<svg id="" onload="go()"> +<path id="b"> +<view id="c" viewBox="1 9 0 1" /> + |