Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / tables / nested-tables.html
blob20df1b01d79621a836d62707152e76fbf2d5311d
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 <script>
29 if (window.testRunner) {
30 testRunner.waitUntilDone();
32 window.requestAnimationFrame(function() {
33 testRunner.notifyDone();
34 });
36 </script>
37 </head>
38 <body>
39 <div id="description">
40 Table autosizing tests - nested-tables.html<br/>
41 This test passes if "This text should not overlap itself" doesn't overlap itself.
42 </div>
43 <table>
44 <tr>
45 <td>
46 Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize Autosize
47 <table border="1">
48 <tr>
49 <td>This text<br/>should not overlap<br/>itself.</td>
50 </tr>
51 <tr>
52 <td><img src="broken_image" width="5" height="5" /></td>
53 </tr>
54 </table>
55 </td>
56 </tr>
57 </table>
58 </body>
59 </html>