blob: b322b5ac059ad32188f413f6337b89f61b141076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(boom, 30);" class="reftest-wait">
<script>
function boom()
{
var doomed = document.getElementById("doomed");
doomed.parentNode.removeChild(doomed);
document.documentElement.removeAttribute("class");
}
</script>
<g stroke="url(#grad)">
<g id="doomed">
<linearGradient id="grad" />
<rect fill="url(#grad)" />
</g>
</g>
</svg>
|