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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-change-column-repaint.html

Issue 180523004: [CSS Grid Layout] Remove legacy WebKitCSSGridLayoutEnabled flag from the Layout Tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script src="../repaint/resources/text-based-repaint.js"></script> 3 <script src="../repaint/resources/text-based-repaint.js"></script>
4 <script> 4 <script>
5 if (window.testRunner)
6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
7
8 function repaintTest() 5 function repaintTest()
9 { 6 {
10 var gridItem = document.getElementsByClassName("sizedToGridArea")[0]; 7 var gridItem = document.getElementsByClassName("sizedToGridArea")[0];
11 gridItem.style.gridColumn = "3"; 8 gridItem.style.gridColumn = "3";
12 } 9 }
13 window.addEventListener("load", runRepaintTest, false); 10 window.addEventListener("load", runRepaintTest, false);
14 </script> 11 </script>
15 <link href="resources/grid.css" rel="stylesheet"> 12 <link href="resources/grid.css" rel="stylesheet">
16 <style> 13 <style>
17 body { 14 body {
(...skipping 11 matching lines...) Expand all
29 </style> 26 </style>
30 <body> 27 <body>
31 <div>This test checks that changing the grid-column on a grid item properly repa int. The final grid item should be 50px * 50px. There should be no trace of the grid item at the old position.</div> 28 <div>This test checks that changing the grid-column on a grid item properly repa int. The final grid item should be 50px * 50px. There should be no trace of the grid item at the old position.</div>
32 <div class="constrainedContainer"> 29 <div class="constrainedContainer">
33 <div class="grid"> 30 <div class="grid">
34 <div class="sizedToGridArea"></div> 31 <div class="sizedToGridArea"></div>
35 </div> 32 </div>
36 </div> 33 </div>
37 </body> 34 </body>
38 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698