| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 | 2 |
| 3 <head> | 3 <head> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 span:before { content: "TEST FAILED"; } | 5 span:before { content: "TEST FAILED"; } |
| 6 #test:before { content: none; } | 6 #test:before { content: none; } |
| 7 #testContainer { |
| 8 border:1px solid black; |
| 9 } |
| 7 </style> | 10 </style> |
| 8 <script type="text/javascript"> | 11 <script type="text/javascript"> |
| 9 if (window.testRunner) { | 12 if (window.testRunner) { |
| 10 testRunner.dumpAsText(); | 13 testRunner.dumpAsText(); |
| 11 testRunner.waitUntilDone(); | 14 testRunner.waitUntilDone(); |
| 12 } | 15 } |
| 13 | 16 |
| 14 function run() { | 17 function run() { |
| 15 testWidth = window.getComputedStyle(document.getElementById("tes
tContainer"), null).getPropertyValue("width"); | 18 testWidth = window.getComputedStyle(document.getElementById("tes
tContainer"), null).getPropertyValue("width"); |
| 16 referenceWidth=window.getComputedStyle(document.getElementById("
reference"), null).getPropertyValue("width"); | 19 referenceWidth=window.getComputedStyle(document.getElementById("
reference"), null).getPropertyValue("width"); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 37 <table> | 40 <table> |
| 38 <tr> | 41 <tr> |
| 39 <td id="reference">12345678901234567890</td> | 42 <td id="reference">12345678901234567890</td> |
| 40 <td>1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 11 1 </td> | 43 <td>1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 11 1 </td> |
| 41 </tr> | 44 </tr> |
| 42 </table> | 45 </table> |
| 43 <p>========Marker3========</p> | 46 <p>========Marker3========</p> |
| 44 <pre id="console"/> | 47 <pre id="console"/> |
| 45 </body> | 48 </body> |
| 46 </html> | 49 </html> |
| OLD | NEW |