| Index: third_party/WebKit/LayoutTests/accessibility/multiselect-list-reports-active-option.html
|
| diff --git a/third_party/WebKit/LayoutTests/accessibility/multiselect-list-reports-active-option.html b/third_party/WebKit/LayoutTests/accessibility/multiselect-list-reports-active-option.html
|
| index 68f497ca7810bc1557e5f0a5df2bd4e8b86a9f74..02f066ff36254da91e32651d043aa63334d5784e 100644
|
| --- a/third_party/WebKit/LayoutTests/accessibility/multiselect-list-reports-active-option.html
|
| +++ b/third_party/WebKit/LayoutTests/accessibility/multiselect-list-reports-active-option.html
|
| @@ -29,7 +29,7 @@
|
| shouldBe("accessibleThree.isSelectedOptionActive", "false");
|
|
|
| // Change the selected index by simulating a down arrow keydown event.
|
| - eventSender.keyDown('downArrow', []);
|
| + eventSender.keyDown('ArrowDown', []);
|
|
|
| shouldBe("accessibleOne.isSelected", "false");
|
| shouldBe("accessibleOne.isSelectedOptionActive", "false");
|
| @@ -39,7 +39,7 @@
|
| shouldBe("accessibleThree.isSelectedOptionActive", "false");
|
|
|
| // Extend the selection by simulating a Shift + Down Arrow keydown event.
|
| - eventSender.keyDown('downArrow', ['shiftKey']);
|
| + eventSender.keyDown('ArrowDown', ['shiftKey']);
|
|
|
| shouldBe("accessibleOne.isSelected", "false");
|
| shouldBe("accessibleOne.isSelectedOptionActive", "false");
|
|
|