https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1ada2b9d2facaff780efafc90e28ea813d892cb5 authored by tbirdbld on 29 August 2012, 00:05:20 UTC
Added THUNDERBIRD_16_0b1_RELEASE THUNDERBIRD_16_0b1_BUILD1 tag(s) for changeset d77906f8ceee. DONTBUILD CLOSED TREE a=release
Tip revision: 1ada2b9
stress-2.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>
back to top