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/dialog-paints-in-top-layer.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Canvas descendants can be painted into the top layer</title>
<link rel="match" href="dialog-paints-in-top-layer-ref.html">
<style>
dialog {
width: 100px;
height: 100px;
background: green;
border: none;
outline: none;
}
#not-painted {
width: 100px;
height: 100px;
background: red;
}
</style>
<canvas width="200" height="200" layoutsubtree>
<div id="not-painted">
<dialog id="dialog"></dialog>
</div>
</canvas>
<script>
onload = () => {
dialog.showModal();
}
</script>