| 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> | 6 <div> |
| 7 <a id="link1" href="#">Link</a> | 7 <a id="link1" href="#">Link</a> |
| 8 <button id="button1">Button</button> | 8 <button id="button1">Button</button> |
| 9 <input id="text1" type="text"> | 9 <input id="text1" type="text"> |
| 10 <input id="checkbox1" type="checkbox"> | 10 <input id="checkbox1" type="checkbox"> |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 element = document.getElementById(id); | 82 element = document.getElementById(id); |
| 83 element.focus(); | 83 element.focus(); |
| 84 shouldBe("document.activeElement == previousFocusedElement", "true"); | 84 shouldBe("document.activeElement == previousFocusedElement", "true"); |
| 85 debug(""); | 85 debug(""); |
| 86 } | 86 } |
| 87 | 87 |
| 88 checkNotFocusable("linkInHiddenCanvas"); | 88 checkNotFocusable("linkInHiddenCanvas"); |
| 89 | 89 |
| 90 </script> | 90 </script> |
| 91 | 91 |
| 92 <script src="../js/resources/js-test-post.js"></script> | |
| 93 </body> | 92 </body> |
| 94 </html> | 93 </html> |
| OLD | NEW |