https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e9b052e94617ea4883b2a3ad9b2f33ea456efe46 authored by Chris Lilley on 02 May 2018, 16:18:16 UTC
correct link
Tip revision: e9b052e
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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