Index: third_party/WebKit/LayoutTests/fast/events/dispatch-synthetic-keyboardevent-no-action.html |
diff --git a/third_party/WebKit/LayoutTests/fast/events/dispatch-synthetic-keyboardevent-no-action.html b/third_party/WebKit/LayoutTests/fast/events/dispatch-synthetic-keyboardevent-no-action.html |
index c36d5d43ffce9db497b1ca2cba24da5131708bba..a3ea70a6d80d72f4ba002226df9aff8021e76ee7 100644 |
--- a/third_party/WebKit/LayoutTests/fast/events/dispatch-synthetic-keyboardevent-no-action.html |
+++ b/third_party/WebKit/LayoutTests/fast/events/dispatch-synthetic-keyboardevent-no-action.html |
@@ -12,7 +12,7 @@ description("Tests to ensure that default action does not occur for untrusted ev |
var node = document.getElementById('radio1'); |
node.getBoundingClientRect(); |
-var event = new KeyboardEvent('keydown', { keyIdentifier: 'Down' } ); |
+var event = new KeyboardEvent('keydown', { key: 'ArrowDown' } ); |
node.dispatchEvent(event); |
shouldBeTrue("document.getElementById('radio1').checked"); |
shouldBeFalse("document.getElementById('radio2').checked"); |