| span:before { content: "TEST FAILED"; } |
| #test:before { content: normal; } |
| <script type="text/javascript"> |
| testRunner.waitUntilDone(); |
| testWidth = window.getComputedStyle(document.getElementById("testContainer"), null).getPropertyValue("width"); |
| referenceWidth=window.getComputedStyle(document.getElementById("reference"), null).getPropertyValue("width"); |
| if (testWidth == referenceWidth) |
| document.getElementById("console").innerText = "PASSED"; |
| document.getElementById("console").innerText = "FAILED: testWidth=" + testWidth +"; expected " + referenceWidth; |
| <body onload="setTimeout('run()', 0);"> |
| The texts between the markers should be identical. |
| <p>========Marker1========</p> |
| <td id="testContainer"><span id="test">12345678901234567890</span></td> |
| <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> |
| <p>========Marker2========</p> |
| <td id="reference">12345678901234567890</td> |
| <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> |
| <p>========Marker3========</p> |