Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / grid-item-z-index-change-repaint-expected.html
blob60823da1d08fe9ad5003f22a1946f544cae31dba
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link href="../../../fast/css-grid-layout/resources/grid.css" rel="stylesheet">
5 <style>
6 .grid {
7 grid-template-rows: 100px;
8 grid-template-columns: 200px 200px;
9 width: -webkit-fit-content;
10 margin-top: 10px;
12 .red {
13 background-color: red;
15 .green {
16 background-color: green;
18 .negativeZIndex {
19 z-index: -1;
21 </style>
22 </head>
23 <body>
24 <div style="height: 100px">
25 <p>This test checks that grid items correctly repaint when 'z-index' changes.</p>
26 <p>For this test to pass, there should be no red below.</p>
27 </div>
29 <div class="grid">
30 <div id="item1" class="sizedToGridArea green" style="z-index: 1"></div>
31 <div class="sizedToGridArea red"></div>
32 </div>
34 <div class="grid">
35 <div id="item2" class="sizedToGridArea green" style="z-index: 1"></div>
36 <div class="sizedToGridArea red"></div>
37 </div>
39 </body>
40 </html>