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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-columns-rows-get-set-multiple.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 <head> 3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
7 </script>
8 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
9 <style> 5 <style>
10 .grid { 6 .grid {
11 /* Give an explicit size to the grid so that percentage grid tracks have a c onsistent resolution */ 7 /* Give an explicit size to the grid so that percentage grid tracks have a c onsistent resolution */
12 width: 800px; 8 width: 800px;
13 height: 600px; 9 height: 600px;
14 } 10 }
15 11
16 .gridItem { 12 .gridItem {
17 grid-column: 1; 13 grid-column: 1;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 <div class="grid gridWithFractionFraction" id="gridWithFractionFraction"></div> 131 <div class="grid gridWithFractionFraction" id="gridWithFractionFraction"></div>
136 <div class="grid gridWithFractionMinMax" id="gridWithFractionMinMax"></div> 132 <div class="grid gridWithFractionMinMax" id="gridWithFractionMinMax"></div>
137 <div class="grid gridWithCalcCalc" id="gridWithCalcCalc"></div> 133 <div class="grid gridWithCalcCalc" id="gridWithCalcCalc"></div>
138 <div class="grid gridWithCalcAndFixed" id="gridWithCalcAndFixed"></div> 134 <div class="grid gridWithCalcAndFixed" id="gridWithCalcAndFixed"></div>
139 <div class="grid gridWithCalcAndMinMax" id="gridWithCalcAndMinMax"></div> 135 <div class="grid gridWithCalcAndMinMax" id="gridWithCalcAndMinMax"></div>
140 <div class="grid gridWithCalcInsideMinMax" id="gridWithCalcInsideMinMax"></div> 136 <div class="grid gridWithCalcInsideMinMax" id="gridWithCalcInsideMinMax"></div>
141 <script src="resources/grid-definitions-parsing-utils.js"></script> 137 <script src="resources/grid-definitions-parsing-utils.js"></script>
142 <script src="resources/grid-columns-rows-get-set-multiple.js"></script> 138 <script src="resources/grid-columns-rows-get-set-multiple.js"></script>
143 </body> 139 </body>
144 </html> 140 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698