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

Side by Side Diff: LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.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 white-space: pre; 6 white-space: pre;
11 } 7 }
12 .a { 8 .a {
13 height: 100%; 9 height: 100%;
14 width: 30px; 10 width: 30px;
15 background: salmon; 11 background: salmon;
16 } 12 }
17 </style> 13 </style>
18 <body> 14 <body>
19 <div class="grid"> 15 <div class="grid">
20 16
21 <div class="a"></div> &#9; 17 <div class="a"></div> &#9;
22 </div> 18 </div>
23 </body> 19 </body>
24 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698