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

Side by Side Diff: LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.html

Issue 16888008: Don't create renderers for whitespace nodes in flexbox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script>
4 if (window.testRunner)
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
6 </script>
7 <link href="resources/grid.css" rel="stylesheet">
8 <style>
9 .grid {
10 white-space: pre;
11 }
12 .a {
13 height: 100%;
14 width: 30px;
15 background: salmon;
16 }
17 </style>
18 <body>
19 <div class="grid">
20
21 <div class="a"></div> &#9;
22 </div>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698