Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 2896653003: Make KeyboardEvent have direct fields for keyCode/charCode, as they're no longer inherited from UIE… (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 76e3a5a1f8952c7eab4951237be7962074899db7..c8ca2a9d4fb8bfbf34d72433985ee4e81a147b91 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -22176,10 +22176,10 @@ class KeyboardEvent extends UIEvent {
}
@DomName('KeyboardEvent.keyCode')
- int get keyCode => _keyCode;
+ final int keyCode;
@DomName('KeyboardEvent.charCode')
- int get charCode => _charCode;
+ final int charCode;
@DomName('KeyboardEvent.which')
int get which => _which;
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698