Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/document-canvas-remove-body.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<script src="/common/reftest-wait.js"></script>
<script src="/common/rendering-utils.js"></script>
<link rel="match" href="document-canvas-remove-body-ref.html">
<body style="background: red"></body>
<script>
waitForAtLeastOneFrame().then(() => {
document.body.remove();
takeScreenshot();
});
</script>
</html>