Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-width-exceeding-max-width.html
bloba8086f2aa0ca784d7c134e522b1c46f3a988af2a
1 <!DOCTYPE html>
2 <style>
3 #a {
4 height: 100px;
5 max-width: 100px;
6 width: 500px;
7 background: red;
8 display: table;
10 </style>
11 <script src="../../resources/check-layout.js"></script>
12 <body onload="checkLayout('#a')">
13 <div>This test checks that a table with 'width' exceeding 'max-width' is correctly constrained.</div>
14 <div id="a" data-expected-width="100"></div>
15 </body>