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

Status: FAIL | Duration: 47ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

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

<!doctype html>
<meta charset="utf-8">
<title>CSS Backgrounds and Borders Test: Do not propagate body background when body is contained</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#special-backgrounds">
<link rel="match" href="background-color-no-body-propagation-ref.html">
<style>
  body { contain: paint; background: green; }
</style>
<body>This text should have a green background.</body>

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

<!doctype html>
<title>CSS Reftest Reference</title>
<div style="background-color:green">This text should have a green background.</div>