| Index: third_party/WebKit/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html b/third_party/WebKit/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html
|
| index afcff03694ed528044c84964a5eaa47bce90b3da..5e64eee3652def9fd4ee359b2d83ea95ccefa807 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html
|
| @@ -68,12 +68,12 @@
|
| // In Chromium, HOME/END key only reset y scroll position, and x scroll position is preserved.
|
| function testEnd() {
|
| window.scrollTo(expectedScrollX, expectedScrollY);
|
| - eventSender.keyDown("end");
|
| + eventSender.keyDown("End");
|
| shouldBecomeEqual('window.scrollY == 0', 'true', testSelectAll);
|
| }
|
| function testHome() {
|
| window.scrollTo(expectedScrollX, expectedScrollY);
|
| - eventSender.keyDown("home");
|
| + eventSender.keyDown("Home");
|
| shouldBecomeEqual('window.scrollY == -3425', 'true', testEnd);
|
| }
|
| testHome();
|
|
|