https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d00f579875653721524811c310bf63e8f42e8e2e authored by ffxbld on 08 May 2013, 04:38:53 UTC
Added FIREFOX_21_0_RELEASE FIREFOX_21_0_BUILD2 tag(s) for changeset 0a66f8ca83a1. DONTBUILD CLOSED TREE a=release
Tip revision: d00f579
scrolling.js
var topElements = document.getElementsByClassName("scrollTop");
if (!topElements.length) {
  topElements = [document.documentElement];
}

var failed = false;

function doScroll(d)
{
  if (failed)
    return;
  for (var i = 0; i < topElements.length; ++i) {
    var e = topElements[i];
    e.scrollTop = d;
    if (e.scrollTop != d) {
      document.documentElement.textContent =
          "Scrolling failed on " + e.tagName + " element, " +
          "tried to scroll to " + d + ", got " + e.scrollTop +
          " (Random number: " + Math.random() + ")";
      failed = true;
    }
  }
}

if (document.location.search == '?ref') {
  doScroll(20);
} else if (document.location.search == '?up') {
  doScroll(40);
  document.documentElement.setAttribute("class", "reftest-wait");
  window.addEventListener("MozReftestInvalidate", function() {
    document.documentElement.removeAttribute("class");
    doScroll(20);
  }, false);
} else {
  doScroll(1);
  document.documentElement.setAttribute("class", "reftest-wait");
  window.addEventListener("MozReftestInvalidate", function() {
    document.documentElement.removeAttribute("class");
    doScroll(20);
  }, false);
}
back to top