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

Unified Diff: third_party/WebKit/LayoutTests/fast/frames/iframe-scroll-page-up-down.html-disabled

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/frames/iframe-scroll-page-up-down.html-disabled
diff --git a/third_party/WebKit/LayoutTests/fast/frames/iframe-scroll-page-up-down.html-disabled b/third_party/WebKit/LayoutTests/fast/frames/iframe-scroll-page-up-down.html-disabled
index 20d6f5b8dc100a2e35f0f48cdc283528085e45f8..12bc1ba01f87c417d36b72a117adf75f1d2d5faf 100644
--- a/third_party/WebKit/LayoutTests/fast/frames/iframe-scroll-page-up-down.html-disabled
+++ b/third_party/WebKit/LayoutTests/fast/frames/iframe-scroll-page-up-down.html-disabled
@@ -17,7 +17,7 @@ function test()
var oldScrollTop = document.scrollingElement.scrollTop;
var focus1 = window[0][0].document.getElementById("focus1");
focus1.focus();
- eventSender.keyDown("pageUp");
+ eventSender.keyDown("PageUp");
var test1Passed = false;
if (document.scrollingElement.scrollTop < oldScrollTop)
test1Passed = true;
@@ -30,7 +30,7 @@ function test()
oldScrollTop = document.scrollingElement.scrollTop
var focus2 = window[0][0].document.getElementById("focus2");
focus2.focus();
- eventSender.keyDown("pageDown");
+ eventSender.keyDown("PageDown");
var test2Passed = false;
if (document.scrollingElement.scrollTop > oldScrollTop)
test2Passed = true;

Powered by Google App Engine
This is Rietveld 408576698