Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / anonymous-table-no-baseline-align.html
blobac1aa25e5a12bd7112f71edb2a1f397a7f362ede
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .wrapper {
6 height: 100px;
7 width: 120px;
8 display: inline-block;
9 background-color: green;
11 .cell {
12 display: table-cell;
13 vertical-align: middle;
14 color: green;
16 </style>
17 </head>
18 <body>
19 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=91137">91137</a>: REGRESSION(r117339): cell in block-level table in inline-block are aligned with their last line box</p>
20 <p>This test checks that an anonymous 'table' doesn't contribute its baseline when determining an inline-block baseline.</p>
21 <p>The 2 green squares should be aligned below.</p>
22 <div class="wrapper">
23 <div class="cell">&nbsp;</div>
24 </div>
25 <div class="wrapper">
26 <div class="cell">&nbsp;<br>&nbsp;<br></div>
27 </div>
28 </body>
29 </html>