| OLD | NEW |
| 1 | 1 |
| 2 class HTMLMarqueeElementJs extends HTMLElementJs implements HTMLMarqueeElement n
ative "*HTMLMarqueeElement" { | 2 class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement
native "*HTMLMarqueeElement" { |
| 3 | 3 |
| 4 String get behavior() native "return this.behavior;"; | 4 String get behavior() native "return this.behavior;"; |
| 5 | 5 |
| 6 void set behavior(String value) native "this.behavior = value;"; | 6 void set behavior(String value) native "this.behavior = value;"; |
| 7 | 7 |
| 8 String get bgColor() native "return this.bgColor;"; | 8 String get bgColor() native "return this.bgColor;"; |
| 9 | 9 |
| 10 void set bgColor(String value) native "this.bgColor = value;"; | 10 void set bgColor(String value) native "this.bgColor = value;"; |
| 11 | 11 |
| 12 String get direction() native "return this.direction;"; | 12 String get direction() native "return this.direction;"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 42 void set vspace(int value) native "this.vspace = value;"; | 42 void set vspace(int value) native "this.vspace = value;"; |
| 43 | 43 |
| 44 String get width() native "return this.width;"; | 44 String get width() native "return this.width;"; |
| 45 | 45 |
| 46 void set width(String value) native "this.width = value;"; | 46 void set width(String value) native "this.width = value;"; |
| 47 | 47 |
| 48 void start() native; | 48 void start() native; |
| 49 | 49 |
| 50 void stop() native; | 50 void stop() native; |
| 51 } | 51 } |
| OLD | NEW |