| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
| 5 | 5 |
| 6 <div id=test-container> | 6 <div id=test-container> |
| 7 <p><a id=a1 tabindex=0 title="focusable">Anchor with tab index</a> | 7 <p><a id=a1 tabindex=0 title="focusable">Anchor with tab index</a> |
| 8 <p><a id=a2 title="not focusable">Anchor without tab index</a> | 8 <p><a id=a2 title="not focusable">Anchor without tab index</a> |
| 9 <p><a id=a3 href="#" title="not focusable">Link without tab index</a> | 9 <p><a id=a3 href="#" title="not focusable">Link without tab index</a> |
| 10 <p><a id=a4 href="#" tabindex=0 title="focusable">Link with tab index</a> | 10 <p><a id=a4 href="#" tabindex=0 title="focusable">Link with tab index</a> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 eventSender.mouseUp(); | 32 eventSender.mouseUp(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 var tc = document.getElementById('test-container'); | 35 var tc = document.getElementById('test-container'); |
| 36 tc.parentNode.removeChild(tc); | 36 tc.parentNode.removeChild(tc); |
| 37 } else { | 37 } else { |
| 38 debug('Need testRunner.'); | 38 debug('Need testRunner.'); |
| 39 } | 39 } |
| 40 | 40 |
| 41 </script> | 41 </script> |
| 42 <script src="../js/resources/js-test-post.js"></script> | |
| 43 </body> | 42 </body> |
| 44 </html> | 43 </html> |
| OLD | NEW |