OLD | NEW |
1 | 1 |
2 class TextTrackCueJs extends DOMTypeJs implements TextTrackCue native "*TextTrac
kCue" { | 2 class _TextTrackCueJs extends _DOMTypeJs implements TextTrackCue native "*TextTr
ackCue" { |
3 | 3 |
4 String get alignment() native "return this.alignment;"; | 4 String get alignment() native "return this.alignment;"; |
5 | 5 |
6 void set alignment(String value) native "this.alignment = value;"; | 6 void set alignment(String value) native "this.alignment = value;"; |
7 | 7 |
8 String get direction() native "return this.direction;"; | 8 String get direction() native "return this.direction;"; |
9 | 9 |
10 void set direction(String value) native "this.direction = value;"; | 10 void set direction(String value) native "this.direction = value;"; |
11 | 11 |
12 num get endTime() native "return this.endTime;"; | 12 num get endTime() native "return this.endTime;"; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 void set startTime(num value) native "this.startTime = value;"; | 46 void set startTime(num value) native "this.startTime = value;"; |
47 | 47 |
48 String get text() native "return this.text;"; | 48 String get text() native "return this.text;"; |
49 | 49 |
50 void set text(String value) native "this.text = value;"; | 50 void set text(String value) native "this.text = value;"; |
51 | 51 |
52 int get textPosition() native "return this.textPosition;"; | 52 int get textPosition() native "return this.textPosition;"; |
53 | 53 |
54 void set textPosition(int value) native "this.textPosition = value;"; | 54 void set textPosition(int value) native "this.textPosition = value;"; |
55 | 55 |
56 TextTrackJs get track() native "return this.track;"; | 56 _TextTrackJs get track() native "return this.track;"; |
57 | 57 |
58 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 58 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
59 | 59 |
60 bool dispatchEvent(EventJs evt) native; | 60 bool dispatchEvent(_EventJs evt) native; |
61 | 61 |
62 DocumentFragmentJs getCueAsHTML() native; | 62 _DocumentFragmentJs getCueAsHTML() native; |
63 | 63 |
64 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 64 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
65 } | 65 } |
OLD | NEW |