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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item.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 <script src="../../resources/check-layout.js"></script> 3 <script src="../../resources/check-layout.js"></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 padding: 10px; 7 padding: 10px;
12 border-top: 10px dotted blue; 8 border-top: 10px dotted blue;
13 border-right: 20px dotted blue; 9 border-right: 20px dotted blue;
14 border-bottom: 30px dotted blue; 10 border-bottom: 30px dotted blue;
15 border-left: 40px dotted blue; 11 border-left: 40px dotted blue;
16 grid-template-rows: 100px 100px; 12 grid-template-rows: 100px 100px;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 <div class="grid horizontalBT directionRTL" data-expected-width="280" data-e xpected-height="260"> 87 <div class="grid horizontalBT directionRTL" data-expected-width="280" data-e xpected-height="260">
92 <div class="sizedToGridArea firstRowFirstColumn" data-offset-x="30" data -offset-y="120" data-expected-width="100" data-expected-height="100"></div> 88 <div class="sizedToGridArea firstRowFirstColumn" data-offset-x="30" data -offset-y="120" data-expected-width="100" data-expected-height="100"></div>
93 <div class="sizedToGridArea firstRowSecondColumn" data-offset-x="130" da ta-offset-y="120" data-expected-width="100" data-expected-height="100"></div> 89 <div class="sizedToGridArea firstRowSecondColumn" data-offset-x="130" da ta-offset-y="120" data-expected-width="100" data-expected-height="100"></div>
94 <div class="sizedToGridArea secondRowFirstColumn" data-offset-x="30" dat a-offset-y="20" data-expected-width="100" data-expected-height="100"></div> 90 <div class="sizedToGridArea secondRowFirstColumn" data-offset-x="30" dat a-offset-y="20" data-expected-width="100" data-expected-height="100"></div>
95 <div class="sizedToGridArea secondRowSecondColumn" data-offset-x="130" d ata-offset-y="20" data-expected-width="100" data-expected-height="100"></div> 91 <div class="sizedToGridArea secondRowSecondColumn" data-offset-x="130" d ata-offset-y="20" data-expected-width="100" data-expected-height="100"></div>
96 </div> 92 </div>
97 </div> 93 </div>
98 94
99 </body> 95 </body>
100 </html> 96 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698