https://github.com/mozilla/gecko-dev
Raw File
Tip revision: af98e8295f9aeda69892a1b2ce03030f70c9528b authored by ffxbld on 19 December 2012, 15:26:47 UTC
Added FENNEC_18_0b5_RELEASE FENNEC_18_0b5_BUILD1 tag(s) for changeset 39f7775e4fb0. DONTBUILD CLOSED TREE a=release
Tip revision: af98e82
stress-3.html
<!DOCTYPE html>
<html class="reftest-wait" id="fl" style="position: absolute">
<head>

<style>

.flcounter:first-line { content: counter(egg); }

#fl:first-line { }

</style>

<script>

function boom()
{
  document.documentElement.appendChild(document.createTextNode("\n"));
  document.getElementById("div").style.counterReset = "";
  setTimeout(boom2, 20);
}

function boom2()
{
  document.body.removeAttribute("class");
  document.body.offsetWidth;
  document.documentElement.className = "";  
}

</script>
</head>

<body style="position: inherit; float: left;" class="flcounter" onload="boom();">
<div id="div" style="counter-reset: chicken;"></div>
</body>
</html>
back to top