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

Side by Side Diff: LayoutTests/fast/table/whitespace-in-anonymous-table-cells-expected.html

Issue 1065563005: Allow whitespace inside anonymous table cells (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated Created 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .ib {
4 display: inline-block;
5 width: 300px;
6 background:red;
7 }
8 </style>
9 <p> crbug.com/473832: Allow whitespace between the children of anonymous table c ells. </p>
10 <div style="display:table; width:700px;">
11 <div style="display:table-row;">
12 <div style="display:table-cell;">
13 <div class="ib">There should be whitespace</div>
14 <div class="ib">between the two red rectangles.</div>
15 </div>
16 </div>
17 </div>
18 <div style="display:table; width:700px;">
19 <div style="display:table-row;">
20 <div style="display:table-cell;">
21 <div class="ib">There should be whitespace</div>
22 <div class="ib">between the two red rectangles.</div>
23 </div>
24 </div>
25 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698