Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / grid-item-change-row-repaint-expected.html
blob4fe105c203297f37bc5be3de260abbdb31054d8c
1 <!DOCTYPE html>
2 <html>
3 <link href="../../../fast/css-grid-layout/resources/grid.css" rel="stylesheet">
4 <style>
5 .grid {
6 grid-template-rows: 50px 100px;
7 grid-template-columns: 100px 50px;
8 /* Make the grid shrink to fit. */
9 position: absolute;
11 .sizedToGridArea {
12 background-color: purple;
13 grid-row: 2;
15 </style>
16 <body>
17 <div>This test checks that changing the grid-row on a grid item properly repaint. The final grid item should be 100px * 100px. There should be no trace of the grid item at the old position.</div>
18 <div class="grid">
19 <div class="sizedToGridArea"></div>
20 </div>
21 </body>
22 </html>