Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / empty-table-should-take-no-space.html
blob5bb8490538a4a921a7477d7888fade110291fdbe
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <style>
5 span {
6 background-color: green;
7 color: green;
10 .sandwich {
11 background-color: green;
12 color: green;
13 height: 20px;
14 width: 20px;
17 .inline-table {
18 display: inline-table;
19 border-spacing: 20px;
20 background-color: red;
23 table {
24 background-color: red;
26 </style>
27 <div>Bug <a href="https://webkit.org/b/95521">95521</a>: Tables without any descendant and auto logical width should have a 0px logical width</div>
28 <div>Description: This test checks that an auto table without any cells doesn't take any space.</div>
29 <div>There should be 2 green horizontal rectangles with no empty or red space below.</div>
30 <div>
31 <span>xxxxx</span><div class="inline-table"></div><span>xxxxx</span>
32 </div>
33 <br>
34 <div style="-webkit-writing-mode: vertical-lr">
35 <div class="sandwich"></div>
36 <table cellspacing="20px"></table>
37 <div class="sandwich"></div>
38 <div>
39 </body>
40 </html>