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 10 matching lines...) Expand all Loading... |
21 <caption id="test"> | 21 <caption id="test"> |
22 <a>Text in caption 2</a> | 22 <a>Text in caption 2</a> |
23 </caption> | 23 </caption> |
24 <caption> | 24 <caption> |
25 <div id="test2"> | 25 <div id="test2"> |
26 <a>Text in caption 3</a> | 26 <a>Text in caption 3</a> |
27 </div> | 27 </div> |
28 </caption> | 28 </caption> |
29 </body> | 29 </body> |
30 </html> | 30 </html> |
OLD | NEW |