https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5dc6b1334c08f1d5e2ac6ba307eba5772f7e2fff authored by Chris Rebert on 28 November 2016, 01:36:43 UTC
Add tests for Event.returnValue
Tip revision: 5dc6b13
worklet-reftest.js
// To make sure that we take the snapshot at the right time, we do double
// requestAnimationFrame. In the second frame, we take a screenshot, that makes
// sure that we already have a full frame.
function importWorkletAndTerminateTestAfterAsyncPaint(worklet, code) {
    if (typeof worklet == "undefined") {
        takeScreenshot();
    } else {
        var blob = new Blob([code], {type: 'text/javascript'});
        worklet.addModule(URL.createObjectURL(blob)).then(function() {
            requestAnimationFrame(function() {
                requestAnimationFrame(function() {
                    takeScreenshot();
                });
            });
        });
    }
}

back to top