2 <html xmlns=
"http://www.w3.org/1999/xhtml">
4 <title>overflow on subsequent bodys should not propagate to the viewport
</title>
6 html { overflow:visible; }
7 #test { display:block; overflow:scroll; width:
10em; height:
10em; border:thin solid; }
11 window
.onload = function() {
12 var newElm
= document
.getElementsByTagName("body")[0].cloneNode(false);
14 document
.documentElement
.appendChild(newElm
);
15 document
.getElementsByTagName("p")[0].firstChild
.data
= "There should be scrollbars for the box below -- not for the viewport.";
20 <p>FAIL (script didn't run)
</p>