Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-color-body-propagation-008.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Backgrounds and Borders Test: Do not propagate body background when html root is contained</title>
<link rel="match" href="background-color-no-body-propagation-ref.html">
<style>
html { contain: paint; }
body { background: green; }
</style>
<body>This text should have a green background.</body>