mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
816 B
HTML
30 lines
816 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
function doe2(i) {
|
||
|
document.getElementById('b').style.position = 'static';
|
||
|
document.getElementById('a').setAttribute('style', 'position: absolute; -moz-column-count: 2;');
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
setTimeout(doe2,100);
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<style>body * {border: 1px solid black;}</style>
|
||
|
<body>
|
||
|
<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>
|