summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/view-background-from-body-2.html
blob: 0ca22898601b43815fcdfa3fb5482e663b6669d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<head>
    <!-- The entire viewport should be solid blue, with no white margin. -->
    <script src="resources/text-based-repaint.js" type="text/javascript"></script>
    <script type="text/javascript">
       function repaintTest()
       {
            document.body.style.removeProperty("display");
       }
    </script>
</head>
<body onload="runRepaintTest();" style="margin: 50px; background-color: blue; display: none;">
</body>