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

Side by Side Diff: LayoutTests/fast/css-grid-layout/minmax-spanning-resolution-columns.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: auto auto; 6 grid-template-columns: auto auto;
11 grid-template-rows: 50px 100px; 7 grid-template-rows: 50px 100px;
12 } 8 }
13 9
14 .gridFixedAutoContent { 10 .gridFixedAutoContent {
15 grid-template-columns: 10px auto; 11 grid-template-columns: 10px auto;
16 grid-template-rows: 50px 100px; 12 grid-template-rows: 50px 100px;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 <div class="sizedToGridArea bothRowBothColumn" data-expected-width="250" data-expected-height="150">XXXXXXXXXXXX XXXXXXXXXXXX</div> 258 <div class="sizedToGridArea bothRowBothColumn" data-expected-width="250" data-expected-height="150">XXXXXXXXXXXX XXXXXXXXXXXX</div>
263 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="65 " data-expected-height="50"></div> 259 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="65 " data-expected-height="50"></div>
264 <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="1 85" data-expected-height="50"></div> 260 <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="1 85" data-expected-height="50"></div>
265 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="6 5" data-expected-height="100"></div> 261 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="6 5" data-expected-height="100"></div>
266 <div class="sizedToGridArea secondRowSecondColumn" data-expected-width=" 185" data-expected-height="100"></div> 262 <div class="sizedToGridArea secondRowSecondColumn" data-expected-width=" 185" data-expected-height="100"></div>
267 </div> 263 </div>
268 </div> 264 </div>
269 265
270 </body> 266 </body>
271 </html> 267 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698