Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug93363.html
blob36448a572cf685daffe5ec11ecd023e655c7326e
1 <html>
2 <head>
3 <title>regression test bug 93363</title>
5 <style>
6 table { border: 4px solid blue; }
7 table td { border: 1px solid blue; }
8 table table { border: 4px solid green; }
9 table table td { border: 1px solid green; }
10 table table table { border: 4px solid red; }
11 table table table td { border: 1px solid red; }
12 p.nowrp { white-space: nowrap; }
13 </style>
15 </head>
16 <body>
18 <table>
19 <tr>
20 <td VALIGN=top>
21 <table>
22 <tr>
23 <td>
24 this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text.
25 this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text. this is a bunch of text.
26 </td>
27 </tr>
28 </table>
29 </td>
31 <td VALIGN=top>
32 <table>
33 <tr>
34 <td nowrap>
35 this cell is nowrap.
36 <table>
37 <tr>
38 <td>
39 this text is in a cell of a table, contained in a <p class="nowrp"><b>cell with NOWRAP</b></p> but this text should wrap!
40 only the bold text should not wrap be cause is contained in a P that's nowrap.
41 </td>
42 </tr>
43 </table>
44 </td>
45 </tr>
46 </table>
47 </td>
48 </tr>
49 </table>
51 <br>
52 Tables have a thick border, cells have a thin border.
54 </body>
55 </html>