Update manifest and move files

This commit is contained in:
Stuart Nelson 2017-10-08 11:29:49 +02:00
parent aff8b0a4e9
commit c886e3ee75
3 changed files with 27 additions and 27 deletions

View file

@ -0,0 +1,4 @@
<!doctype html>
<body bgcolor="green">
Passes if the background is green.
</body>

View file

@ -0,0 +1,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>