https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a6f528f9ff00b8cd4e9526bae531c7eac75702fb authored by Yutaka Hirano on 26 April 2018, 22:52:40 UTC
fix
Tip revision: a6f528f
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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