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