summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-css-user-agent-style-sheet-and-presentational-hints/body-bgcolor-attribute-change.html
blob: d0b2396a4047a0c6d310fdcfa9dccb7b1ec8ee24 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<link rel="help" href="https://html.spec.whatwg.org/multipage/obsolete.html#attr-body-bgcolor">
<link rel="match" href="body-bgcolor-attribute-change-ref.html">
<body bgcolor="yellow">
  Passes if the background is green.
</body>
<script>
  document.body.offsetTop;
  document.body.setAttribute("bgcolor", "green");
</script>