https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f85379482fadc58774476d377636fb8423edc6ac authored by Kim Moir on 15 May 2017, 13:57:26 UTC
Bug 1358976 - Stop automatic triggers of nightly builds on mozilla-aurora r=dustin DONTBUILD a=test-only CLOSED TREE
Tip revision: f853794
component-alpha-exit-1-ref.html
<!DOCTYPE html>
<html class="reftest-wait">
<title>Reference for test transition from component-alpha layer to single-alpha layer</title>
<script type="text/javascript">
document.addEventListener("MozReftestInvalidate", function scrollDownAllTheWay () {
  var scrollbox = document.getElementById("scrollbox");
  scrollbox.scrollTop = 1000;
  document.documentElement.className = "";
});
</script>
<style>
#scrollbox {
  margin: 20px;
  width: 300px;
  height: 400px;
  overflow-y: hidden;
  background: -moz-linear-gradient(#FFF, #FFF);
}

#inner {
  background-color: #000;
  padding-bottom: 415px;
}
</style>

<div id="scrollbox">
  <div id="inner">
    
  </div>
</div>
back to top