| 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="../../resources/js-test.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> |
| 11 <p><a id=a5 href="#" contentEditable title="focusable">Link with contentEditable
</a> | 11 <p><a id=a5 href="#" contentEditable title="focusable">Link with contentEditable
</a> |
| 12 <p contenteditable id="p6" title="focusable"><a id=a6 href="#" title="not focusa
ble">Link inside contentEditable</a> | 12 <p contenteditable id="p6" title="focusable"><a id=a6 href="#" title="not focusa
ble">Link inside contentEditable</a> |
| 13 <p tabindex="1" id="p7" title="focusable"><a id="a7" href="#" title="not focusab
le">Link inside an elment with tabindex</a> | 13 <p tabindex="1" id="p7" title="focusable"><a id="a7" href="#" title="not focusab
le">Link inside an elment with tabindex</a> |
| 14 </div> | 14 </div> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 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 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |