Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / input-in-table-cell-no-value.html
blob76c4a192ab4b6e71437aba23a99b9e40a1dfb9e2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 td
7 position: relative;
8 height: 50px;
11 input
13 position: absolute;
14 width: 100px;
15 top: 2px;
16 bottom: 2px;
18 </style>
19 </head>
20 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=89209">89209</a>: REGRESSION(r112113): absolutely positioned INPUT boxes with a table cell containing block have a 0px height</p>
21 <p>This test passes if you can see some text inside the &lt;input&gt; boxes</p>
22 <table>
23 <tr>
24 <td>Single line text input</td>
25 <td><input type="number" value="1"></input></td>
26 </tr>
27 <tr>
28 <td>Text input <br/> spanning <br/> multiple lines.</td>
29 <td><input type="date" value="2000-01-01"></input></td>
30 </tr>
31 </table>
32 </html>