blob: d92fd193fa0e25d5131d37205496af81593c5ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script type="text/javascript">
function boom()
{
document.getElementById("x").style.padding = "67108863pc";
setTimeout(boom2, 0);
}
function boom2()
{
document.body.removeChild(document.getElementById("colset"));
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();"> <div style="column-count: 2;" id="colset"><div style="height: 1px;"><div id="x"><div style="width: 1px;">A B C D</div></div></div></div> </body>
</html>
|