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

Side by Side Diff: LayoutTests/fast/css-grid-layout/minmax-spanning-resolution-rows.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 .gridAutoAutoContent { 5 .gridAutoAutoContent {
10 grid-template-columns: 50px 100px; 6 grid-template-columns: 50px 100px;
11 grid-template-rows: auto auto; 7 grid-template-rows: auto auto;
12 } 8 }
13 9
14 .gridFixedAutoContent { 10 .gridFixedAutoContent {
15 grid-template-columns: 50px 100px; 11 grid-template-columns: 50px 100px;
16 grid-template-rows: 10px auto; 12 grid-template-rows: 10px auto;
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 <div class="sizedToGridArea bothRowBothColumn" data-expected-width="150" data-expected-height="90">XXXXX XXXXX XXXXX XXXXX XXXXX</div> 278 <div class="sizedToGridArea bothRowBothColumn" data-expected-width="150" data-expected-height="90">XXXXX XXXXX XXXXX XXXXX XXXXX</div>
283 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="50 " data-expected-height="50"></div> 279 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="50 " data-expected-height="50"></div>
284 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="5 0" data-expected-height="40"></div> 280 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="5 0" data-expected-height="40"></div>
285 <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="1 00" data-expected-height="50"></div> 281 <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="1 00" data-expected-height="50"></div>
286 <div class="sizedToGridArea secondRowSecondColumn" data-expected-width=" 100" data-expected-height="40"></div> 282 <div class="sizedToGridArea secondRowSecondColumn" data-expected-width=" 100" data-expected-height="40"></div>
287 </div> 283 </div>
288 </div> 284 </div>
289 285
290 </body> 286 </body>
291 </html> 287 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698