Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / fixed-tranformed-expected.html
blob13c7198e0fac10a06d66cc5a70c54b95b9d5dcc4
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 body {
7 height: 1000px;
8 margin: 0;
10 #test {
11 width: 100px;
12 height: 100px;
13 background-color: green;
14 position: absolute;
15 top: 110px;
16 left: 60px;
18 </style>
19 <script type="text/javascript">
20 function setupTest() {
21 window.scrollBy(0, 50);
23 window.addEventListener('load', setupTest, false);
24 </script>
25 </head>
26 <body>
28 <!--
29 https://bugs.webkit.org/show_bug.cgi?id=36686
30 Test repainting of a fixed-position element with a transform.
31 The box should be entirely green.
32 -->
33 <div id="test"></div>
35 </body>
36 </html>