Status: FAIL | Duration: 44ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/background-color-root-propagation-002.html
<!DOCTYPE html> <html class="reftest-wait"> <title>CSS Backgrounds and Borders Test: don't propagate html background when display:none dynamic</title> <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#special-backgrounds"> <link rel="match" href="../reference/blank.html"> <style> html { background: red; } </style> <script> window.onload = () => { requestAnimationFrame(() => requestAnimationFrame(() => { document.documentElement.style.display = "none"; document.documentElement.classList.remove("reftest-wait"); })); }; </script>
<!doctype html> <title>CSS Test Reference</title> <!-- Intentionally blank -->