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

Unified Diff: third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-single-select.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/spatial-navigation/snav-single-select.html
diff --git a/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-single-select.html b/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-single-select.html
index ddca34b91ae97b9ba5ed4f93ef0c7e66bbb06e92..19eee9f863f36542cad5b17448b10400900211d6 100644
--- a/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-single-select.html
+++ b/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-single-select.html
@@ -51,9 +51,9 @@
document.getElementById("start").focus();
shouldBe("gFocusedDocument.getElementById(\"start\").selectedIndex", "0");
eventSender.keyDown(" ");
- eventSender.keyDown("downArrow");
+ eventSender.keyDown("ArrowDown");
shouldBe("gFocusedDocument.getElementById(\"start\").selectedIndex", "1");
- eventSender.keyDown("upArrow");
+ eventSender.keyDown("ArrowUp");
shouldBe("gFocusedDocument.getElementById(\"start\").selectedIndex", "0");
testCompleted();

Powered by Google App Engine
This is Rietveld 408576698