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

Side by Side Diff: LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-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 .container { 5 .container {
10 position: relative; 6 position: relative;
11 width: 500px; 7 width: 500px;
12 height: 600px; 8 height: 600px;
13 } 9 }
14 10
15 .grid { 11 .grid {
16 grid-template-columns: 40% 60%; 12 grid-template-columns: 40% 60%;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 <div class="grid" style="-webkit-writing-mode: vertical-lr;" data-expected-width ="400" data-expected-height="300"> 71 <div class="grid" style="-webkit-writing-mode: vertical-lr;" data-expected-width ="400" data-expected-height="300">
76 <div class="firstRowFirstColumn" data-expected-width="120" data-expected-hei ght="15"></div> 72 <div class="firstRowFirstColumn" data-expected-width="120" data-expected-hei ght="15"></div>
77 <div class="firstRowSecondColumn" data-expected-width="15" data-expected-hei ght="180"></div> 73 <div class="firstRowSecondColumn" data-expected-width="15" data-expected-hei ght="180"></div>
78 <div class="secondRowFirstColumn" data-expected-width="140" data-expected-he ight="60"></div> 74 <div class="secondRowFirstColumn" data-expected-width="140" data-expected-he ight="60"></div>
79 <div class="secondRowSecondColumn" data-expected-width="280" data-expected-h eight="180"></div> 75 <div class="secondRowSecondColumn" data-expected-width="280" data-expected-h eight="180"></div>
80 </div> 76 </div>
81 </div> 77 </div>
82 78
83 </body> 79 </body>
84 </html> 80 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698