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-010.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Backgrounds and Borders Test: Do not propagate background from `body::before`</title> <link rel="author" href="mailto:obrufau@igalia.com" title="Oriol Brufau"> <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#special-backgrounds"> <link rel="help" href="https://github.com/servo/servo/issues/41084"> <link rel="match" href="background-color-no-body-propagation-ref.html"> <style> body::before { content: "This text should have a green background."; display: block; background-color: green; } </style>
/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>