2 <html xmlns=
"http://www.w3.org/1999/xhtml">
4 <title>background on body should fill the viewport even when it has bogus siblings
</title>
6 html { background-color:transparent; background-image:none; }
7 body { background-image:url(resources/yellow.png); color:navy; }
10 window
.onload = function() {
11 var newElm
= document
.createElementNS("urn:foo:bogus", "body");
12 document
.documentElement
.insertBefore(newElm
, document
.getElementsByTagName("body")[0]);
13 document
.getElementsByTagName("p")[0].firstChild
.data
= "The entire viewport should be yellow.";
18 <p>FAIL (script didn't run)
</p>