https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 90ceace0e88c4cfcc7eecfef88826fbb6ec76796 authored by Jonathon Kereliuk on 03 April 2018, 17:23:10 UTC
fix test description
Tip revision: 90ceace
reftest-wait.js
function takeScreenshot() {
    document.documentElement.classList.remove("reftest-wait");
}

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