| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>The table cell nowrap minimum width calculation quirk</title> | 4 <title>The table cell nowrap minimum width calculation quirk</title> |
| 5 <script src="../../../resources/testharness.js"></script> | 5 <script src="/resources/testharness.js"></script> |
| 6 <script src="../../../resources/testharnessreport.js"></script> | 6 <script src="/resources/testharnessreport.js"></script> |
| 7 <style> iframe { width:200px; height:20px; } </style> | 7 <style> iframe { width:200px; height:20px; } </style> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 <div id=log></div> | 10 <div id=log></div> |
| 11 <iframe id=quirks></iframe> | 11 <iframe id=quirks></iframe> |
| 12 <iframe id=almost></iframe> | 12 <iframe id=almost></iframe> |
| 13 <iframe id=standards></iframe> | 13 <iframe id=standards></iframe> |
| 14 <script> | 14 <script> |
| 15 setup({explicit_done:true}); | 15 setup({explicit_done:true}); |
| 16 | 16 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 win.title); | 63 win.title); |
| 64 }); | 64 }); |
| 65 }, document.title+', '+t.desc); | 65 }, document.title+', '+t.desc); |
| 66 }); | 66 }); |
| 67 | 67 |
| 68 done(); | 68 done(); |
| 69 } | 69 } |
| 70 </script> | 70 </script> |
| 71 </body> | 71 </body> |
| 72 </html> | 72 </html> |
| OLD | NEW |