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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.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 #bigGrid { 12 #bigGrid {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 <div class="sizedToGridArea thirdRowSpanning2Column3" data-offset-x="0" data -offset-y="50" data-expected-width="100" data-expected-height="25"></div> 170 <div class="sizedToGridArea thirdRowSpanning2Column3" data-offset-x="0" data -offset-y="50" data-expected-width="100" data-expected-height="25"></div>
175 </div> 171 </div>
176 172
177 <div style="position: relative"> 173 <div style="position: relative">
178 <div class="grid" id="bigGrid" data-expected-width="200" data-expected-height="1 00"> 174 <div class="grid" id="bigGrid" data-expected-width="200" data-expected-height="1 00">
179 <div class="sizedToGridArea underflowSpanning" data-offset-x="0" data-offset -y="0" data-expected-width="100" data-expected-height="75"></div> 175 <div class="sizedToGridArea underflowSpanning" data-offset-x="0" data-offset -y="0" data-expected-width="100" data-expected-height="75"></div>
180 </div> 176 </div>
181 177
182 </body> 178 </body>
183 </html> 179 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698