| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <script type="text/javascript"> | 2 <script type="text/javascript"> |
| 3 function runTest() | 3 function runTest() |
| 4 { | 4 { |
| 5 if (window.layoutTestController) | 5 if (window.layoutTestController) |
| 6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
| 7 | 7 |
| 8 test = document.getElementById("test"); | 8 test = document.getElementById("test"); |
| 9 test2 = document.getElementById("test2"); | 9 test2 = document.getElementById("test2"); |
| 10 inp = document.createElement("input"); | 10 inp = document.createElement("input"); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 <a>Text in caption 2</a> | 23 <a>Text in caption 2</a> |
| 24 </caption> | 24 </caption> |
| 25 <caption> | 25 <caption> |
| 26 <div id="test2"> | 26 <div id="test2"> |
| 27 <a>Text in caption 3</a> | 27 <a>Text in caption 3</a> |
| 28 </div> | 28 </div> |
| 29 </caption> | 29 </caption> |
| 30 </table> | 30 </table> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |