gecko-dev/layout/generic/crashtests/423098.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 строки
474 B
HTML
Исходник Обычный вид История

2013-05-13 01:09:30 +04:00
<html>
<head>
<script type="text/javascript">
function boom()
{
document.getElementById("b").style.position = "static";
document.body.offsetHeight;
document.getElementById("a").style.fontSize = "110%";
}
</script>
</head>
<body style="column-count: 1;" onload="boom();">
2013-05-13 01:09:30 +04:00
<div id="a" style="float: right; height: 80px;">
<div id="b" style="position: absolute; height: 10px;"></div>
<div style="height: 100px; width: 11px;"></div>
</div>
</body>
</html>