OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 * { display:run-in; } | 5 * { display:block; } |
6 .collapse { visibility:collapse; } | 6 .collapse { visibility:collapse; } |
7 </style> | 7 </style> |
8 <script> | 8 <script> |
9 | 9 |
10 if (window.testRunner) { | 10 if (window.testRunner) { |
11 window.testRunner.dumpAsText(); | 11 window.testRunner.dumpAsText(); |
12 window.testRunner.waitUntilDone(); | 12 window.testRunner.waitUntilDone(); |
13 } | 13 } |
14 | 14 |
15 document.designMode = "on"; | 15 document.designMode = "on"; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 </script> | 47 </script> |
48 </head> | 48 </head> |
49 <body> | 49 <body> |
50 <table class="collapse"> | 50 <table class="collapse"> |
51 <caption> | 51 <caption> |
52 original text | 52 original text |
53 </caption> | 53 </caption> |
54 </table> | 54 </table> |
55 </body> | 55 </body> |
56 </html> | 56 </html> |
OLD | NEW |