| Index: third_party/WebKit/LayoutTests/fast/forms/radio/radio-crash-by-keyboard-event.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/radio/radio-crash-by-keyboard-event.html b/third_party/WebKit/LayoutTests/fast/forms/radio/radio-crash-by-keyboard-event.html
|
| index 9be32722c5532451a984749e64042f142a9ac882..79647608c18632461dc6a5242534f811323db046 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/radio/radio-crash-by-keyboard-event.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/radio/radio-crash-by-keyboard-event.html
|
| @@ -6,7 +6,7 @@
|
| test(function() {
|
| var radio = document.createElement('input');
|
| radio.type = 'radio';
|
| - radio.dispatchEvent(new KeyboardEvent('keydown', { keyIdentifier: 'Down' } ));
|
| + radio.dispatchEvent(new KeyboardEvent('keydown', { key: 'ArrowDown' } ));
|
| }, 'Sending a keydown event to detached radio button should not crash.');
|
| </script>
|
| </body>
|
|
|