Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-with-content-width-exceeding-max-width.html
blob0c0504e7460fcdded2a6d192d69584a9b4c9dc1a
1 <!DOCTYPE html>
2 <style>
3 #a {
4 height: 100px;
5 max-width: 100px;
6 width: 50px;
7 background: red;
8 display: table;
9 font: 10px/1 Ahem;
11 </style>
12 <script src="../../resources/check-layout.js"></script>
13 <body onload="checkLayout('#a')">
14 <div>This test checks that a table with 'width' and content wider than 'max-width' is not constrained.</div>
15 <div id="a" data-expected-width="200">XXXXXXXXXXXXXXXXXXXX</div>
16 </body>