https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 35bf9454005e238dcac8129c9d4394ed592db8fd authored by Ovidio Henriquez on 21 March 2018, 23:50:55 UTC
bluetooth: FakeBluetoothChooserServerClient impl.
Tip revision: 35bf945
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