https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 835d19abcdd0a83d704629d7ee3936063fe51924 authored by Ms2ger on 06 October 2016, 12:20:21 UTC
wip
Tip revision: 835d19a
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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