Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug85016.html
blobaef920c69d20d7e46596165211c175a9a53f1bb2
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
3 <html>
4 <head>
5 <title>percentage heights</title>
6 <style>
7 body { margin: 2em; overflow: hidden; }
8 div {margin: 2em; }
9 </style>
10 </head>
12 <body>
13 <p style="display:none;">percentage height images in DIV with no height (red)</p>
14 <div style="border: 1px solid green;">
15 <div style="border: 1px solid red;">
16 <img height="100%" width="100%" src="../images/raptor.jpg">
17 </div>
18 </div>
19 <p>percentage height images in DIV with no height (red) in a DIV with no height (green)</p>
20 <div style="border: 3px dotted green;">
21 <div style="border: 1px solid red;">
22 <img height="100%" src="../images/raptor.jpg">
23 </div>
24 </div>
25 <p>percentage height image in table cell (red), in a DIV with no height (green)</p>
27 <div>
28 <table style="border: 1px solid red;" height="100%">
29 <tr>
30 <td style="border: 1px solid red;"><img src="../images/raptor.jpg"></td>
31 </tr>
32 </table>
33 </div>
34 </body>
35 </html>