https://github.com/web-platform-tests/wpt
Raw File
Tip revision: be3e4fce6a46b7337d130e2f32144a2fdcd57377 authored by japhet@chromium.org on 25 August 2017, 21:30:51 UTC
Implement history.index
Tip revision: be3e4fc
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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