Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / fixed-table-layout / empty-table-should-take-no-space-fixed-layout.html
blobc0b544f4ac7cc86a6854c7d70b5381450857b0b1
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 table-layout: fixed;
20 border-spacing: 20px;
21 background-color: red;
24 table {
25 background-color: red;
27 </style>
28 <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>
29 <div>Description: This test checks that an auto table without any cells doesn't take any space.</div>
30 <div>There should be 2 green horizontal rectangles with no empty or red space below.</div>
31 <div>
32 <span>xxxxx</span><div class="inline-table"></div><span>xxxxx</span>
33 </div>
34 <br>
35 <div style="-webkit-writing-mode: vertical-lr">
36 <div class="sandwich"></div>
37 <table cellspacing="20px" style="table-layout: fixed"></table>
38 <div class="sandwich"></div>
39 <div>
40 </body>
41 </html>