summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/586806-1.html
blob: 44ae0f9672addb0b214f720e488450768c84de03 (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
<html class="reftest-wait">
<head>
<script>
function doe2() {
document.getElementById('b').style.position = 'static';
document.getElementById('a').setAttribute('style', 'position: absolute; column-count: 2;');
document.documentElement.removeAttribute("class");
}
</script>
</head>
<style>body * {border: 1px solid black;}</style>
<body onload="doe2();">
<div style="width: 500px;border: 1px solid black;">
<div style="display: inline-block; width: 100px; height: 100px;"></div>
<span style="position: absolute;"></span>
mmmmmmmmmmmmmmmmmmmmmmm

<span id="a">mmmmmmmmmmmmmmmmmmmm

<div id="b" style="display: inline-block; width: 240px; height: 100px; position: absolute;"></div>
m mm mm mm mm mm mm mm mm m
<span style="float: left;">m</span>
</span>
</div>
</body>

</html>