Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / generated-caption.html
blob1b3fe45ac7e2227b60fb054a0f69f991e18f5632
1 <html>
2 <head>
3 <style>
4 span { display: table; caption-side: bottom; }
5 span:after { display: table-caption; content: 'after'; }
6 </style>
7 </head>
8 <body>
9 <p>
10 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=15309">http://bugs.webkit.org/show_bug.cgi?id=15309</a>
11 Crash due to infinite recursion in LayoutTable::addChild</i>.
12 </p>
13 <p>
14 The following should look the same (and have identical render tree hierarchies):
15 </p>
16 <p>
17 <span>table</span>
18 </p>
19 <p>
20 <table cellpadding="0" style="border-collapse: collapse; caption-side: bottom;">
21 <tr>
22 <td>table</td>
23 </tr>
24 <caption>after</caption>
25 </table>
26 </p>
27 </body>
28 </html>