summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/background-color-body-propagation-003.html
blob: 8106822a4e8be18848b37ccd1ef38444d1e2bc89 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<title>CSS Backgrounds and Borders Test: propagate body background while display changes</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#body-background">
<link rel="match" href="background-color-body-propagation-ref.html">
<style>body { margin: 0 }</style>
<p>The viewport should have a green background.</p>
<script>
  document.body.offsetTop;
  document.body.style = "display:inline;background:green";
</script>