https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 11690672f466c806815a6998493660c5c9d69e1e authored by Timothy Gu on 05 September 2017, 06:26:22 UTC
Add symbol [[Set]]
Tip revision: 1169067
valid-image-after-load.html
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="valid-image-after-load-ref.html">
<style>
    #output {
        width: 100px;
        height: 100px;
        background-color: red;
    }
</style>
<script src="/common/reftest-wait.js"></script>
<script src="/common/css-paint-tests.js"></script>
<body>
<div id="output"></div>

<script id="code" type="text/worklet">
registerPaint('green', class {
    paint(ctx, geom) {
        ctx.fillStyle = 'green';
        ctx.fillRect(0, 0, geom.width, geom.height);
    }
});
</script>

<script>
if (window.testRunner) {
  testRunner.waitUntilDone();
}

var blob = new Blob([document.getElementById('code').textContent],
                    {type: 'text/javascript'});
var frame_cnt = 0;
CSS.paintWorklet.addModule(URL.createObjectURL(blob)).then(function() {
    var el = document.getElementById('output');
    el.style.backgroundImage = 'paint(green)';
    requestAnimationFrame(function() {
        takeScreenshot(frame_cnt);
    });
});
</script>
</body>
</html>
back to top