| 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="../../fast/js/resources/js-test-pre.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. " |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 if (window.eventSender) { | 32 if (window.eventSender) { |
| 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 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 42 </body> | 41 </body> |
| 43 </html> | 42 </html> |
| OLD | NEW |