Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/css-grid-layout/grid-item-change-row-repaint-expected.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <link href="../../../fast/css-grid-layout/resources/grid.css" rel="stylesheet">
4 <style>
5 body {
6 font: 10px/1 Ahem;
7 }
8
9 .grid {
10 grid-template-rows: 50px 100px;
11 grid-template-columns: 100px 50px;
12 /* Make the grid shrink to fit. */
13 position: absolute;
14 }
15 .sizedToGridArea {
16 background-color: purple;
17 grid-row: 2;
18 }
19 </style>
20 <body>
21 <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 g rid item at the old position.</div>
22 <div class="grid">
23 <div class="sizedToGridArea"></div>
24 </div>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698