mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
28 lines
582 B
HTML
28 lines
582 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function boom() {
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById('e').setAttribute('style', '');
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
</script>
|
|
<style id="e">
|
|
body #a::after { content: "before text"; position: fixed; }
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="boom();" style="-moz-column-count: 2; width: 100px;">
|
|
<div>m</div>
|
|
<div id="a" style="-moz-column-count: 2;">
|
|
m
|
|
<br style="float: left;">
|
|
m
|
|
<span style="float: left;">m</span>
|
|
|
|
<div style="float: left; -moz-column-width: 9999999999px;"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|