https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5f34e7c5db22dfb8de4a1495972d16cbe93158ae authored by ffxbld on 26 August 2014, 19:23:57 UTC
Added FENNEC_32_0_RELEASE FENNEC_32_0_BUILD1 tag(s) for changeset 75cd19e6494d. DONTBUILD CLOSED TREE a=release
Tip revision: 5f34e7c
uncovering-1.html
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<style>
body {
  width: 1500px;
  overflow: hidden;
}
div#bottom {
  position: fixed;
  left: 0;
  top: 0;
  height: 200px;
  width: 200px;
  background: green;
}
</style>
</head>
<body>
<div id="bottom"></div>
<div style="width:600px; height:100px; background:pink;"></div>
<script>
document.documentElement.scrollLeft = 200;
function doTest() {
  document.documentElement.removeAttribute("class");
  document.documentElement.scrollLeft = 0;
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</body>
</html>
back to top