blob: 2113285c3c458187ddaac0ad14ef5f48fe8ce72f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../resources/run-after-layout-and-paint.js"></script>
<style>
#output {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<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]);
paintWorklet.import(URL.createObjectURL(blob)).then(function() {
var el = document.getElementById('output');
el.style.backgroundImage = 'paint(green)';
runAfterLayoutAndPaint(function() {
if (window.testRunner) {
testRunner.notifyDone();
}
});
});
</script>
</body>
</html>