https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8504f7d8f23bceb9b2e8e619afde234056a2e0bc authored by Anne van Kesteren on 21 March 2018, 14:23:38 UTC
Make MessagePort's close() detach
Tip revision: 8504f7d
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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