blob: 536206c46df5d2902323ac094341556aacb63df5 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("f").className = 'q';
document.documentElement.removeAttribute("class");
}
</script>
<style>
body {
width: 10em;
}
#f:after {
content: "TTT";
}
</style>
</head>
<body onload="setTimeout(boom, 0);">
<span id="f">foo foo foo foo foo foo foo foo foo foo<span style="display: block"></span></span>
</div>
</body>
</html>
|