https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9f65d811032d205ffa4cebf3449c1e8e3fecd5c4 authored by Ting-Yu Lin on 26 December 2018, 18:48:28 UTC
Shrink columns width in column-span reftests to fit the window on wpt.
Tip revision: 9f65d81
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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