OLD | NEW |
1 | 1 |
2 class HTMLFrameElementJs extends HTMLElementJs implements HTMLFrameElement nativ
e "*HTMLFrameElement" { | 2 class _HTMLFrameElementJs extends _HTMLElementJs implements HTMLFrameElement nat
ive "*HTMLFrameElement" { |
3 | 3 |
4 DocumentJs get contentDocument() native "return this.contentDocument;"; | 4 _DocumentJs get contentDocument() native "return this.contentDocument;"; |
5 | 5 |
6 DOMWindowJs get contentWindow() native "return this.contentWindow;"; | 6 _DOMWindowJs get contentWindow() native "return this.contentWindow;"; |
7 | 7 |
8 String get frameBorder() native "return this.frameBorder;"; | 8 String get frameBorder() native "return this.frameBorder;"; |
9 | 9 |
10 void set frameBorder(String value) native "this.frameBorder = value;"; | 10 void set frameBorder(String value) native "this.frameBorder = value;"; |
11 | 11 |
12 int get height() native "return this.height;"; | 12 int get height() native "return this.height;"; |
13 | 13 |
14 String get location() native "return this.location;"; | 14 String get location() native "return this.location;"; |
15 | 15 |
16 void set location(String value) native "this.location = value;"; | 16 void set location(String value) native "this.location = value;"; |
(...skipping 21 matching lines...) Expand all Loading... |
38 String get scrolling() native "return this.scrolling;"; | 38 String get scrolling() native "return this.scrolling;"; |
39 | 39 |
40 void set scrolling(String value) native "this.scrolling = value;"; | 40 void set scrolling(String value) native "this.scrolling = value;"; |
41 | 41 |
42 String get src() native "return this.src;"; | 42 String get src() native "return this.src;"; |
43 | 43 |
44 void set src(String value) native "this.src = value;"; | 44 void set src(String value) native "this.src = value;"; |
45 | 45 |
46 int get width() native "return this.width;"; | 46 int get width() native "return this.width;"; |
47 | 47 |
48 SVGDocumentJs getSVGDocument() native; | 48 _SVGDocumentJs getSVGDocument() native; |
49 } | 49 } |
OLD | NEW |