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

Side by Side Diff: LayoutTests/fast/css-grid-layout/place-cell-by-index.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: 50px 60px; 6 grid-template-columns: 50px 60px;
11 grid-template-rows: 20px 30px; 7 grid-template-rows: 20px 30px;
12 max-width: 110px; 8 max-width: 110px;
13 } 9 }
14 10
15 .firstRowFirstColumn { 11 .firstRowFirstColumn {
16 width: 10px; 12 width: 10px;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <div class="grid" style="-webkit-writing-mode: vertical-lr; margin-bottom: 60px; " data-expected-width="50" data-expected-height="110"> 66 <div class="grid" style="-webkit-writing-mode: vertical-lr; margin-bottom: 60px; " data-expected-width="50" data-expected-height="110">
71 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0"></div> 67 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0"></div>
72 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="50"></div > 68 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="50"></div >
73 <div class="secondRowFirstColumn" data-offset-x="20" data-offset-y="0"></div > 69 <div class="secondRowFirstColumn" data-offset-x="20" data-offset-y="0"></div >
74 <div class="secondRowSecondColumn" data-offset-x="20" data-offset-y="50"></d iv> 70 <div class="secondRowSecondColumn" data-offset-x="20" data-offset-y="50"></d iv>
75 </div> 71 </div>
76 </div> 72 </div>
77 73
78 </body> 74 </body>
79 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698