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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-choose-default-value-after-set-value.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/month-multiple-fields-choose-default-value-after-set-value.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-choose-default-value-after-set-value.html b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-choose-default-value-after-set-value.html
index 4ec262c2aac2b2f8c7842c5a05147d0c92c749f6..7c16a46383154936bc5b31ae401d44253cc4314c 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-choose-default-value-after-set-value.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-choose-default-value-after-set-value.html
@@ -32,8 +32,8 @@ shouldBeUndefined('eventsCounter.change');
// We assume the year-month format is "MMM yyyy".
input.focus();
-eventSender.keyDown('rightArrow');
-eventSender.keyDown('downArrow');
+eventSender.keyDown('ArrowRight');
+eventSender.keyDown('ArrowDown');
shouldBeEqualToString('input.value', '2000-01');
shouldBe('eventsCounter.input', '1');

Powered by Google App Engine
This is Rietveld 408576698