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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-position-changed-dynamic.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>
4 if (window.testRunner)
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
6 </script>
7 <link href="resources/grid.css" rel="stylesheet"> 3 <link href="resources/grid.css" rel="stylesheet">
8 <style> 4 <style>
9 .grid { 5 .grid {
10 grid-template-columns: (col) 50px (col) 100px (col) 200px (col); 6 grid-template-columns: (col) 50px (col) 100px (col) 200px (col);
11 grid-template-rows: (row) 70px (row) 140px (row) 280px (row); 7 grid-template-rows: (row) 70px (row) 140px (row) 280px (row);
12 } 8 }
13 .differentNamedGridLines { 9 .differentNamedGridLines {
14 grid-template-columns: (col1) 50px (col2) 100px (col3) 200px (col4); 10 grid-template-columns: (col1) 50px (col2) 100px (col3) 200px (col4);
15 grid-template-rows: (row1) 70px (row2) 140px (row3) 280px (row4); 11 grid-template-rows: (row1) 70px (row2) 140px (row3) 280px (row4);
16 } 12 }
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 window.addEventListener("load", updateGridItemPosition, false); 177 window.addEventListener("load", updateGridItemPosition, false);
182 </script> 178 </script>
183 <body> 179 <body>
184 180
185 <p>This test checks that we properly recompute our internal grid when a grid ite m is moved.</p> 181 <p>This test checks that we properly recompute our internal grid when a grid ite m is moved.</p>
186 182
187 <div class="grid"><div class="sizedToGridArea"></div></div> 183 <div class="grid"><div class="sizedToGridArea"></div></div>
188 184
189 </body> 185 </body>
190 </html> 186 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698