wpt / css / css-backgrounds / background-color-body-propagation-003.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-003.html

<!DOCTYPE html>
<title>CSS Backgrounds and Borders Test: propagate body background while display changes</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>body { margin: 0 }</style>
<p>The viewport should have a green background.</p>
<script>
  document.body.offsetTop;
  document.body.style = "display:inline;background:green";
</script>

/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>