Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / tables / wide-specified-width.html
blob6b6b6dd128574f70db5047f6659aa2d0139e2cc8
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name="viewport" content="width=800">
5 <style>
6 body {
7 width: 800px;
8 margin: 0;
9 overflow-y: hidden;
10 font-size: 12px;
12 #description {
13 overflow: clip;
14 width: 600px;
15 height: 3em;
17 table {
18 outline: 1px solid black;
19 margin: 1px;
20 border-collapse: collapse;
22 td {
23 background-color: honeydew;
24 border: 1px dotted darkgreen;
26 </style>
27 <script src="../resources/autosizingTest.js"></script>
28 </head>
29 <body>
30 <div id="description">
31 Table autosizing tests - wide-specified-width.html<br/>
32 This test passes if the cell with lots of text is autosized and none of the other 5 cells are autosized.
33 </div>
34 <table width="500px">
35 <tr>
36 <td>hello</td>
37 <td>hello</td>
38 <td>hello</td>
39 </tr>
40 <tr>
41 <td>
42 hello
43 </td>
44 <td>
45 hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello
46 </td>
47 <td>
48 hello
49 </td>
50 </tr>
51 </table>
52 </body>
53 </html>