blob: 23910438b12615b7c9a5c77e41632eb85a598ce2 (
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
36
37
|
<html class="reftest-wait">
<head>
<style id="style">
.ch1 { counter-increment: chicken; }
</style>
<script>
function boom()
{
document.getElementsByTagName("ol")[0].setAttribute("class", "wtf");
document.getElementById("style").textContent = ".ch2 { counter-increment: chicken; }";
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<ol>
<li class="ch1">item</li>
<li>item
<ol>
<li class="ch2">item</li>
</ol>
</li>
</ol>
<ol class="ch2">
<li>item</li>
</ol>
</body>
</html>
|