https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9a6904deeb2b2ae3400cc348badbb86db6c2ddb4 authored by Joshua Bell on 13 March 2018, 18:06:21 UTC
HTTPS-ify other links
Tip revision: 9a6904d
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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