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

Side by Side Diff: LayoutTests/fast/css-grid-layout/implicit-columns-auto-resolution.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 .gridAutoContent { 5 .gridAutoContent {
10 /* grid-template-columns is left unset so that the grid item's column is imp licit. */ 6 /* grid-template-columns is left unset so that the grid item's column is imp licit. */
11 grid-template-rows: 50px; 7 grid-template-rows: 50px;
12 } 8 }
13 9
14 .firstRowFirstColumn { 10 .firstRowFirstColumn {
15 font: 10px/1 Ahem; 11 font: 10px/1 Ahem;
16 /* Make us fit our grid area. */ 12 /* Make us fit our grid area. */
(...skipping 20 matching lines...) Expand all
37 </div> 33 </div>
38 34
39 <div style="width: 100px; height: 10px;"> 35 <div style="width: 100px; height: 10px;">
40 <div class="grid gridAutoContent"> 36 <div class="grid gridAutoContent">
41 <div class="firstRowFirstColumn" data-expected-width="50" data-expected- height="50">XXXXX</div> 37 <div class="firstRowFirstColumn" data-expected-width="50" data-expected- height="50">XXXXX</div>
42 </div> 38 </div>
43 </div> 39 </div>
44 40
45 </body> 41 </body>
46 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698