mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
22 lines
624 B
HTML
22 lines
624 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function doe2(i) {
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById('a').setAttribute('style', 'display: -moz-inline-box;');
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="float: right; -moz-column-count: 2; height: 20%;" onload="setTimeout(doe2,0);">
|
|
<div style="display: none;"></div>
|
|
<ul style="display: -moz-inline-box;"></ul>
|
|
<span id="a">
|
|
<ul style="display: -moz-grid; overflow: scroll;"></ul>
|
|
<span style="display: -moz-inline-box; height: 10px;">
|
|
<span style="position: absolute;"></span>
|
|
</span>
|
|
</span>
|
|
</body>
|
|
</html>
|