OLD | NEW |
| (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> | |
OLD | NEW |