https://github.com/web-platform-tests/wpt
Raw File
Tip revision: cd7e423fd7bf89a2f25ba3fdc79d073b1b942c6f authored by Jonathon Kereliuk on 04 April 2018, 18:19:15 UTC
added infra test that I forgot to add before
Tip revision: cd7e423
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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