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

Side by Side Diff: LayoutTests/fast/css-grid-layout/should-not-collapse-anonymous-blocks.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> 3 <script>
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
6 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
7 } 6 }
8 </script> 7 </script>
9 <style> 8 <style>
10 #a:nth-last-child(-n+2) { 9 #a:nth-last-child(-n+2) {
11 -webkit-flow-into: body; 10 -webkit-flow-into: body;
12 } 11 }
13 </style> 12 </style>
14 <body> 13 <body>
15 <p>This test passes if it does not crash.</p> 14 <p>This test passes if it does not crash.</p>
16 <div style="display: grid;"> 15 <div style="display: grid;">
17 <div id=a></div> 16 <div id=a></div>
18 <div style="display: inline; "></div> 17 <div style="display: inline; "></div>
19 </div> 18 </div>
20 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698