| Index: LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html
|
| diff --git a/LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html b/LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ef6af9d15533a29ad61e5b5fc9485fbe9f5f1332
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.ib {
|
| + display: inline-block;
|
| + width: 300px;
|
| + background:red;
|
| +}
|
| +</style>
|
| +<p> crbug.com/473832: Allow whitespace between the children of anonymous table cells. </p>
|
| +<div style="display:table; width:700px;">
|
| + <div class="ib">There should be whitespace</div>
|
| + <div class="ib">between the two red rectangles.</div>
|
| +</div>
|
| +<div style="display:table; width:700px;">
|
| + <div style="display:table-row;">
|
| + <div class="ib">There should be whitespace</div>
|
| + <div class="ib">between the two red rectangles.</div>
|
| + </div>
|
| +</div>
|
|
|