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

Side by Side Diff: LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid.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: 100px 10vw; 6 grid-template-columns: 100px 10vw;
11 grid-template-rows: 10vh 100px; 7 grid-template-rows: 10vh 100px;
12 } 8 }
13 9
14 .firstRowFirstColumn { 10 .firstRowFirstColumn {
15 width: 100%; 11 width: 100%;
16 height: 100%; 12 height: 100%;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 48
53 <div class="grid"> 49 <div class="grid">
54 <div class="firstRowFirstColumn" class="verticalRL" data-expected-width="10 0" data-expected-height="60"></div> 50 <div class="firstRowFirstColumn" class="verticalRL" data-expected-width="10 0" data-expected-height="60"></div>
55 <div class="firstRowSecondColumn" data-expected-width="80" data-expected-he ight="60"></div> 51 <div class="firstRowSecondColumn" data-expected-width="80" data-expected-he ight="60"></div>
56 <div class="secondRowFirstColumn" class="verticalRL" data-expected-width="1 00" data-expected-height="100"></div> 52 <div class="secondRowFirstColumn" class="verticalRL" data-expected-width="1 00" data-expected-height="100"></div>
57 <div class="secondRowSecondColumn" data-expected-width="80" data-expected-h eight="100"></div> 53 <div class="secondRowSecondColumn" data-expected-width="80" data-expected-h eight="100"></div>
58 </div> 54 </div>
59 55
60 </body> 56 </body>
61 </html> 57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698