Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / tables / fixed-table-lots-of-text-many-cells.html
blob54e6c4673036897a335b13705858fdf5b5eeaff1
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 .fixed {
27 table-layout: fixed;
29 </style>
30 <script src="../resources/autosizingTest.js"></script>
31 </head>
32 <body>
33 <div id="description">
34 Table autosizing tests - fixed-table-lots-of-text-many-cells.html<br/>
35 This test passes if none of the 18 cells are autosized.
36 </div>
37 <table class="fixed">
38 <tr>
39 <td>hello</td>
40 <td>hello hello hello hello hello hello hello</td>
41 <td>hello hello hello hello hello hello hello</td>
42 <td>hello hello hello hello hello hello hello</td>
43 <td>hello hello hello hello hello hello hello</td>
44 <td>hello hello hello hello hello hello hello</td>
45 </tr>
46 <tr>
47 <td>hello hello hello hello hello hello hello</td>
48 <td>hello hello hello hello hello hello hello</td>
49 <td>hello hello hello hello hello hello hello</td>
50 <td>hello hello hello hello hello hello hello</td>
51 <td>hello hello hello hello hello hello hello</td>
52 <td>hello hello hello hello hello hello hello</td>
53 </tr>
54 <tr>
55 <td>hello hello hello hello hello hello hello</td>
56 <td>hello hello hello hello hello hello hello</td>
57 <td>hello hello hello hello hello hello hello</td>
58 <td>hello hello hello hello hello hello hello</td>
59 <td>hello hello hello hello hello hello hello</td>
60 <td>hello hello hello hello hello hello hello</td>
61 </tr>
62 </table>
63 </body>
64 </html>