blob: ab72d46dee0309b91c3e8c739e12f8a759b7c077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html class="reftest-wait">
<head>
<script type="text/javascript">
var i = 0;
function bouncy()
{
var body = document.body;
document.documentElement.removeChild(body);
document.documentElement.appendChild(body);
if (++i < 30)
setTimeout(bouncy, 1);
else
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="bouncy();"><span id="a"></span><span style="filter: url(#a);"><span style="filter: url(#a);">B</span></span></body>
</html>
|