https://github.com/mozilla/gecko-dev
Raw File
Tip revision: af7f85a285295c23b8596d5b83c9b7ce762b6002 authored by Nick Thomas on 13 May 2013, 22:54:51 UTC
Move the FIREFOX_21_0_RELEASE tag back to FIREFOX_21_0_BUILD3 to reflect what we shipped a=release
Tip revision: af7f85a
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