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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/week-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/week-multiple-fields/resources/preserve-value-after-history-back-frame.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/resources/preserve-value-after-history-back-frame.html b/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/resources/preserve-value-after-history-back-frame.html
index 842d8af8a3d710652d5436516369b8f9350a4ee8..92bc53e1b47854c2cb97a2e4dd839f798e8daadb 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/resources/preserve-value-after-history-back-frame.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/resources/preserve-value-after-history-back-frame.html
@@ -32,7 +32,7 @@ window.onload = function() {
case 'direct': {
testInput1.value = '12012-W10';
testInput2.focus();
- keyDown('upArrow'); // -> Week [01], yyyy
+ keyDown('ArrowUp'); // -> Week [01], yyyy
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-W11';
testInput2.focus();
keyDown('\t'); // -> Week ww, [yyyy]
- keyDown('downArrow'); // -> Week ww, [1999]
+ keyDown('ArrowDown'); // -> Week ww, [1999]
back('backTo1');
break;
case 'forwardTo2':

Powered by Google App Engine
This is Rietveld 408576698