wpt / css / css-backgrounds / background-color-body-propagation-002.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-backgrounds/background-color-body-propagation-002.html

<!DOCTYPE html>
<title>CSS Backgrounds and Borders Test: body background not propagating when html does</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>
  html {
    background-color: green;
    background-image: none;
  }
  body {
    background-color: red;
    margin: 0;
  }
  p {
    background: green;
  }
</style>
<p>The viewport should have a green background.</p>

/css/css-backgrounds/background-color-body-propagation-ref.html

<!DOCTYPE html>
<html style="background:green">
<title>CSS Reftest Reference</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<body style="margin:0">
<p>The viewport should have a green background.</p>