Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / cell-height-min-intrinsic.html
blob4bc6dd605d363523e7a0e0670d26b9cb40231d06
1 <!DOCTYPE html>
2 <script src="../../resources/check-layout.js"></script>
3 <p>Below there should be a green square with a black border.</p>
4 <table id="elm" style="background:black;" data-expected-height="106" data-expected-width="106">
5 <tr>
6 <td style="height:min-intrinsic;">
7 <div style="width:100px; height:100px; background:green;"></div>
8 </td>
9 </tr>
10 </table>
11 <p id="result"></p>
12 <script>
13 checkLayout("#elm", document.getElementById("result"));
14 </script>