mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
378 B
HTML
27 lines
378 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
|
||
|
<style>
|
||
|
#fl:first-line { }
|
||
|
</style>
|
||
|
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("s").style.overflow = "auto";
|
||
|
document.body.offsetWidth;
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body onload="setTimeout(boom, 300);">
|
||
|
|
||
|
<div id="fl">
|
||
|
<b><span id="s">Foo</span></b>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|