Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: LayoutTests/fast/events/keyboardevent-repeat.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="help" href="http://www.w3.org/TR/DOM-Level-3-Events/#events-KeyboardE vent-repeat" /> 4 <link rel="help" href="http://www.w3.org/TR/DOM-Level-3-Events/#events-KeyboardE vent-repeat" />
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 description("Tests KeyboardEvent.repeat attribute"); 9 description("Tests KeyboardEvent.repeat attribute");
10 10
(...skipping 17 matching lines...) Expand all
28 textarea.focus(); 28 textarea.focus();
29 29
30 if (window.eventSender) { 30 if (window.eventSender) {
31 eventSender.keyDown("a"); 31 eventSender.keyDown("a");
32 shouldBeFalse("lastKeyboardEvent.repeat"); 32 shouldBeFalse("lastKeyboardEvent.repeat");
33 33
34 eventSender.keyDown("a", ["autoRepeat"]); 34 eventSender.keyDown("a", ["autoRepeat"]);
35 shouldBeTrue("lastKeyboardEvent.repeat"); 35 shouldBeTrue("lastKeyboardEvent.repeat");
36 } 36 }
37 </script> 37 </script>
38 <script src="../js/resources/js-test-post.js"></script>
39 </body> 38 </body>
40 </html> 39 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/keyboardevent-location-constants.html ('k') | LayoutTests/fast/events/keydown-leftright-keys.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698