summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/document-canvas-remove-body.html
blob: 35b0383ceaae98e6b3d6002a1e6885f3626de226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>