blob: 21271a6837c4314d5bfacef8fbd50b9ebda88bfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<script>
function go() {
b.addEventListener("DOMSubtreeModified", eh)
b.max = 0.44
b.value = 0.94
}
function eh() {
SpecialPowers.gc()
SpecialPowers.forceCC()
polygon.animatedPoints.z = 1;
path.animatedPathSegList.z = 1;
svg.requiredExtensions.z = 1;
}
</script>
<body onload=go()>
<svg id="svg">
<polygon id="polygon"/>
<path id="path"/>
<dl>
<meter id="b">
|