| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <title>background on subsequent bodys should not cover the viewport</title> |
| html { background-color:transparent; background-image:none; } |
| #test { background-color:red; padding:0; } |
| p { background-color:lime; } |
| window.onload = function() { |
| var newElm = document.getElementsByTagName("body")[0].cloneNode(false); |
| document.documentElement.appendChild(newElm); |
| document.getElementsByTagName("p")[0].firstChild.data = "This line should be green and there should be no red."; |
| <p>FAIL (script didn't run)</p> |