blob: 8aaeeff6c966028a29db2b9aa5e2c96479a22ed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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" />
|