https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 70331b364df34875ab5711520e24759a140b9eb3 authored by Ms2ger on 13 March 2018, 16:12:19 UTC
Add tests for transferring ImageBitmap objects.
Tip revision: 70331b3
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();
        return;
    }

    let url;
    if (typeof code === 'object') {
      url = code.url;
    } else {
      const blob = new Blob([code], {type: 'text/javascript'});
      url = URL.createObjectURL(blob);
    }

    worklet.addModule(url).then(function() {
        requestAnimationFrame(function() {
            requestAnimationFrame(function() {
                takeScreenshot();
            });
        });
    });
}
back to top