Revision b067367c0d6ee430fab16403aa2964c95663e59c authored by Michael[tm] Smith on 23 June 2015, 10:22:34 UTC, committed by Michael[tm] Smith on 23 June 2015, 10:22:34 UTC
1 parent c4edb58
Raw File
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

function takeScreenshotDelayed(timeout) {
    setTimeout(function() {
        takeScreenshot();
    }, timeout);
}
back to top