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

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

Powered by Google App Engine
This is Rietveld 408576698