| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <!-- The entire viewport should be white, with no red margin. --> | 2 <!-- The html element steals body's red background whether body has a box or
not. --> |
| 3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
| 4 if (window.testRunner) | 4 if (window.testRunner) |
| 5 window.testRunner.dumpAsTextWithPixelResults(); | 5 window.testRunner.dumpAsTextWithPixelResults(); |
| 6 function runTest() | 6 function runTest() |
| 7 { | 7 { |
| 8 document.body.style.display = "none"; | 8 document.body.style.display = "none"; |
| 9 } | 9 } |
| 10 </script> | 10 </script> |
| 11 </head> | 11 </head> |
| 12 <body onload="runTest();" style="margin: 50px; background-color: red;"> | 12 <body onload="runTest();" style="margin: 50px; background-color: red;"> |
| 13 </body> | 13 </body> |
| OLD | NEW |