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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-value-changed-notification.html

Issue 2100243002: Remove non-standardize key code names from event_sender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix inspector tests that were missed by sed Created 4 years, 5 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <input id=test type="time" value="12:34:56.789"> 7 <input id=test type="time" value="12:34:56.789">
8 <script> 8 <script>
9 description('This test checks value changed accessibility notifications.'); 9 description('This test checks value changed accessibility notifications.');
10 10
(...skipping 17 matching lines...) Expand all
28 return; 28 return;
29 eventSender.keyDown(key, modifiers); 29 eventSender.keyDown(key, modifiers);
30 } 30 }
31 31
32 var testInput = document.getElementById("test"); 32 var testInput = document.getElementById("test");
33 33
34 enableAccessibility(); 34 enableAccessibility();
35 testInput.focus(); 35 testInput.focus();
36 keyDown('\t'); 36 keyDown('\t');
37 keyDown('4'); 37 keyDown('4');
38 keyDown('upArrow'); 38 keyDown('ArrowUp');
39 39
40 window.jsTestIsAsync = true; 40 window.jsTestIsAsync = true;
41 41
42 window.setTimeout(function () { 42 window.setTimeout(function () {
43 debug(''); 43 debug('');
44 testInput.parentNode.removeChild(testInput); 44 testInput.parentNode.removeChild(testInput);
45 finishJSTest(); 45 finishJSTest();
46 }, 1); 46 }, 1);
47 </script> 47 </script>
48 </body> 48 </body>
49 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698