Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/canvas/element/manual/draw-element-image/onpaint-scroll-crash.tentative.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class=reftest-wait>
<script src="/common/reftest-wait.js"></script>
<div id="scroller" style="overflow: scroll; width: 100px; height: 100px; will-change: transform;">
<div style="height: 500px;"></div>
<canvas id="canvas" width="100" height="100" layoutsubtree>
<div id="target"></div>
</canvas>
</div>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
canvas.onpaint = () => {
scroller.scrollTop = 200;
takeScreenshot();
};
canvas.requestPaint();
});
});
</script>
</html>