Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / tables / narrow-specified-width.html
blobe0fa33f4b6c055ff2bf63940de770cbac136285c
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 - narrow-specified-width.html<br/>
32 This test passes if none of the 6 cells are autosized.
33 </div>
34 <table width="200px">
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
46 </td>
47 <td>
48 hello
49 </td>
50 </tr>
51 </table>
52 </body>
53 </html>