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

Side by Side Diff: LayoutTests/fast/table/whitespace-in-anonymous-table-cells.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 class="ib">There should be whitespace</div>
12 <div class="ib">between the two red rectangles.</div>
13 </div>
14 <div style="display:table; width:700px;">
15 <div style="display:table-row;">
16 <div class="ib">There should be whitespace</div>
17 <div class="ib">between the two red rectangles.</div>
18 </div>
19 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698