OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <head> | 2 <head> |
3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 </head> | 4 </head> |
5 | 5 |
6 <body> | 6 <body> |
7 <p id="description"></p> | 7 <p id="description"></p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 <details id="details"><summary id="summary"></summary><input></details> | 9 <details id="details"><summary id="summary"></summary><input></details> |
10 <script> | 10 <script> |
(...skipping 18 matching lines...) Expand all Loading... |
29 eventSender.keyDown(" "); | 29 eventSender.keyDown(" "); |
30 shouldBeTrue('openAttribute("details")'); | 30 shouldBeTrue('openAttribute("details")'); |
31 eventSender.keyDown(" "); | 31 eventSender.keyDown(" "); |
32 shouldBeFalse('openAttribute("details")'); | 32 shouldBeFalse('openAttribute("details")'); |
33 } else { | 33 } else { |
34 debug('There are tests using eventSender.'); | 34 debug('There are tests using eventSender.'); |
35 } | 35 } |
36 </script> | 36 </script> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |