| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index ea38b93dfe008a3c2fc6e7a3dad8c14f72107311..e0efed0c691dd4a2bccff6e56b00f1f422de63de 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -29139,7 +29139,7 @@ class KeyEvent extends _WrappedEvent implements KeyboardEvent {
|
| int get _realCharCode => JS('int', '#.charCode', _parent);
|
|
|
| /** Accessor to the underlying altKey value is the parent event. */
|
| - bool get _realAltKey => JS('int', '#.altKey', _parent);
|
| + bool get _realAltKey => JS('bool', '#.altKey', _parent);
|
|
|
| /** Construct a KeyEvent with [parent] as the event we're emulating. */
|
| KeyEvent(KeyboardEvent parent): super(parent) {
|
|
|