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

Side by Side Diff: LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update.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: 200px 200px; 6 grid-template-columns: 200px 200px;
11 grid-template-rows: 100px 100px; 7 grid-template-rows: 100px 100px;
12 height: 200px; 8 height: 200px;
13 width: 400px; 9 width: 400px;
14 } 10 }
15 11
16 .percentPadding { 12 .percentPadding {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 46
51 <div class="grid"> 47 <div class="grid">
52 <div class="firstRowFirstColumn percentPadding" data-expected-padding-top="5 0" data-expected-padding-right="50" data-expected-padding-bottom="50" data-expec ted-padding-left="50"></div> 48 <div class="firstRowFirstColumn percentPadding" data-expected-padding-top="5 0" data-expected-padding-right="50" data-expected-padding-bottom="50" data-expec ted-padding-left="50"></div>
53 <div class="firstRowSecondColumn percentMargin" data-expected-margin-top="15 0" data-expected-margin-right="150" data-expected-margin-bottom="150" data-expec ted-margin-left="150"></div> 49 <div class="firstRowSecondColumn percentMargin" data-expected-margin-top="15 0" data-expected-margin-right="150" data-expected-margin-bottom="150" data-expec ted-margin-left="150"></div>
54 <div class="secondRowFirstColumn percentPaddingAndMargin" data-expected-padd ing-top="10" data-expected-padding-right="10" data-expected-padding-bottom="10" data-expected-padding-left="10" data-expected-margin-top="20" data-expected-marg in-right="20" data-expected-margin-bottom="20" data-expected-margin-left="20"></ div> 50 <div class="secondRowFirstColumn percentPaddingAndMargin" data-expected-padd ing-top="10" data-expected-padding-right="10" data-expected-padding-bottom="10" data-expected-padding-left="10" data-expected-margin-top="20" data-expected-marg in-right="20" data-expected-margin-bottom="20" data-expected-margin-left="20"></ div>
55 <div class="secondRowSecondColumn percentPaddingAndMargin" data-expected-pad ding-top="30" data-expected-padding-right="30" data-expected-padding-bottom="30" data-expected-padding-left="30" data-expected-margin-top="60" data-expected-mar gin-right="60" data-expected-margin-bottom="60" data-expected-margin-left="60">< /div> 51 <div class="secondRowSecondColumn percentPaddingAndMargin" data-expected-pad ding-top="30" data-expected-padding-right="30" data-expected-padding-bottom="30" data-expected-padding-left="30" data-expected-margin-top="60" data-expected-mar gin-right="60" data-expected-margin-bottom="60" data-expected-margin-left="60">< /div>
56 </div> 52 </div>
57 53
58 </body> 54 </body>
59 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698