1
0
Fork 0
firefox/testing/web-platform/tests/css/css-backgrounds/document-canvas-remove-body.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
441 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<script src="/common/reftest-wait.js"></script>
<script src="/common/rendering-utils.js"></script>
<link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#body-background">
<link rel="match" href="document-canvas-remove-body-ref.html">
<body style="background: red"></body>
<script>
waitForAtLeastOneFrame().then(() => {
document.body.remove();
takeScreenshot();
});
</script>
</html>