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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-display.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 100px 200px; 6 grid-template-columns: 50px 100px 200px;
11 grid-template-rows: 50px 100px 200px; 7 grid-template-rows: 50px 100px 200px;
12 background-color: #aaa; 8 background-color: #aaa;
13 } 9 }
14 .grid > * { 10 .grid > * {
15 margin: 0; /* Disable any margins as they change the top / left offsets. */ 11 margin: 0; /* Disable any margins as they change the top / left offsets. */
16 grid-column: 2; 12 grid-column: 2;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <circle cx="50" cy="50" r="50" fill="blue"> 63 <circle cx="50" cy="50" r="50" fill="blue">
68 </circle> 64 </circle>
69 </svg> 65 </svg>
70 66
71 <!-- Spans are common so they should be tested. --> 67 <!-- Spans are common so they should be tested. -->
72 <span data-expected-display="block" data-offset-x="50" data-offset-y="15 0"></span> 68 <span data-expected-display="block" data-offset-x="50" data-offset-y="15 0"></span>
73 </div> 69 </div>
74 </div> 70 </div>
75 71
76 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698