| Index: client/dom/generated/src/frog/Event.dart
|
| diff --git a/client/dom/generated/src/frog/Event.dart b/client/dom/generated/src/frog/Event.dart
|
| index c96a9568148402f1d4c926b6216d86a4f6b46b92..6de4c454f1d28c211e9dd22a2fe9d394c9f1adc8 100644
|
| --- a/client/dom/generated/src/frog/Event.dart
|
| +++ b/client/dom/generated/src/frog/Event.dart
|
| @@ -39,29 +39,33 @@ class Event native "*Event" {
|
|
|
| static final int SELECT = 16384;
|
|
|
| - bool bubbles;
|
| + bool get bubbles() native "return this.bubbles;";
|
|
|
| - bool cancelBubble;
|
| + bool get cancelBubble() native "return this.cancelBubble;";
|
|
|
| - bool cancelable;
|
| + void set cancelBubble(bool value) native "this.cancelBubble = value;";
|
|
|
| - Clipboard clipboardData;
|
| + bool get cancelable() native "return this.cancelable;";
|
|
|
| - EventTarget currentTarget;
|
| + Clipboard get clipboardData() native "return this.clipboardData;";
|
|
|
| - bool defaultPrevented;
|
| + EventTarget get currentTarget() native "return this.currentTarget;";
|
|
|
| - int eventPhase;
|
| + bool get defaultPrevented() native "return this.defaultPrevented;";
|
|
|
| - bool returnValue;
|
| + int get eventPhase() native "return this.eventPhase;";
|
|
|
| - EventTarget srcElement;
|
| + bool get returnValue() native "return this.returnValue;";
|
|
|
| - EventTarget target;
|
| + void set returnValue(bool value) native "this.returnValue = value;";
|
|
|
| - int timeStamp;
|
| + EventTarget get srcElement() native "return this.srcElement;";
|
|
|
| - String type;
|
| + EventTarget get target() native "return this.target;";
|
| +
|
| + int get timeStamp() native "return this.timeStamp;";
|
| +
|
| + String get type() native "return this.type;";
|
|
|
| void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg) native;
|
|
|
|
|