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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select/select-popup-pagekeys.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/select/select-popup-pagekeys.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select/select-popup-pagekeys.html b/third_party/WebKit/LayoutTests/fast/forms/select/select-popup-pagekeys.html
index 6828ab1c202eb96d7ede3415ba6eee8c0d396cd3..d6c46c13ae7c20c07a6ebdc9b4fcbdbefc9f9b07 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/select/select-popup-pagekeys.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/select/select-popup-pagekeys.html
@@ -9,7 +9,6 @@
function sendKey(element, key) {
if (window.testRunner) {
- key = key.substr(0,1).toLowerCase() + key.substr(1); // lowercase 1st letter for eventSender
eventSender.keyDown(key);
} else {
var event = document.createEvent("KeyboardEvents");

Powered by Google App Engine
This is Rietveld 408576698