https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9173eefa06cd233ca087ac3337fb8e7361d660af authored by Denis Ah-Kang on 14 September 2015, 09:13:28 UTC
wbr ref test: specify font-size
Tip revision: 9173eef
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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