blob: 8e43ca68827b4d928d7afbb8c39d6de34d5b15ad (
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
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html class="reftest-wait" id="fl" style="position: absolute">
<head>
<style>
.flcounter:first-line { content: counter(egg); }
#fl:first-line { }
</style>
<script>
function boom()
{
document.documentElement.appendChild(document.createTextNode("\n"));
document.getElementById("div").style.counterReset = "";
setTimeout(boom2, 20);
}
function boom2()
{
document.body.removeAttribute("class");
document.body.offsetWidth;
document.documentElement.className = "";
}
</script>
</head>
<body style="position: inherit; float: left;" class="flcounter" onload="boom();">
<div id="div" style="counter-reset: chicken;"></div>
</body>
</html>
|