blob: 7227a48238bce7424e613b86ee7212954b086f8f (
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
|
<html class="reftest-wait">
<head>
<style type="text/css">
.a:first-letter { float: right; }
</style>
<script type="text/javascript">
function boom()
{
document.body.style.overflow = "auto";
document.body.className = "a";
setTimeout(boom2, 30);
}
function boom2()
{
var span = document.createElement("span");
document.body.appendChild(span);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">ﺷ
</body>
</html>
|