OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body spellcheck="false"> | 6 <body spellcheck="false"> |
7 asdf is misspelled. | 7 asdf is misspelled. |
8 <script> | 8 <script> |
9 description("This tests whether WebKit does not spell check in 'designMode' " | 9 description("This tests whether WebKit does not spell check in 'designMode' " |
10 + "when spellcheck='false'. To test manually, click 'asdf' above. " | 10 + "when spellcheck='false'. To test manually, click 'asdf' above. " |
11 + "There should be no spelling marker for 'asdf' after the click."); | 11 + "There should be no spelling marker for 'asdf' after the click."); |
12 | 12 |
13 jsTestIsAsync = true; | 13 jsTestIsAsync = true; |
14 | 14 |
(...skipping 18 matching lines...) Expand all Loading... |
33 var x = document.body.offsetLeft + 10; | 33 var x = document.body.offsetLeft + 10; |
34 var y = document.body.offsetTop + 17; | 34 var y = document.body.offsetTop + 17; |
35 eventSender.mouseMoveTo(x, y); | 35 eventSender.mouseMoveTo(x, y); |
36 eventSender.mouseDown(); | 36 eventSender.mouseDown(); |
37 eventSender.mouseUp(); | 37 eventSender.mouseUp(); |
38 } | 38 } |
39 | 39 |
40 </script> | 40 </script> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |