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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/resources/preserve-value-after-history-back-frame.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, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/resources/preserve-value-after-history-back-frame.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/resources/preserve-value-after-history-back-frame.html b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/resources/preserve-value-after-history-back-frame.html
index 6dbfa1981f0e0d7d413926d43d1d2fd2fb2a5348..4540ab1e2316385633eb5e4654774b0bc18d2334 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/resources/preserve-value-after-history-back-frame.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/resources/preserve-value-after-history-back-frame.html
@@ -32,7 +32,7 @@ window.onload = function() {
case 'direct': {
testInput1.value = '12012-10';
testInput2.focus();
- keyDown('upArrow'); // -> [October] 12012
+ keyDown('ArrowUp'); // -> [October] 12012
var nextUri = location.toString().replace('?page1', '?page2');
setTimeout(function() { window.location.href = nextUri; }, 0);
break;
@@ -65,7 +65,7 @@ window.onload = function() {
testInput1.value = '0001-11';
testInput2.focus();
keyDown('\t'); // -> --------- [yyyy]
- keyDown('downArrow'); // -> --------- [1999]
+ keyDown('ArrowDown'); // -> --------- [1999]
back('backTo1');
break;
case 'forwardTo2':

Powered by Google App Engine
This is Rietveld 408576698