| OLD | NEW |
| 1 | 1 |
| 2 class HTMLIFrameElementJs extends HTMLElementJs implements HTMLIFrameElement nat
ive "*HTMLIFrameElement" { | 2 class _HTMLIFrameElementJs extends _HTMLElementJs implements HTMLIFrameElement n
ative "*HTMLIFrameElement" { |
| 3 | 3 |
| 4 String get align() native "return this.align;"; | 4 String get align() native "return this.align;"; |
| 5 | 5 |
| 6 void set align(String value) native "this.align = value;"; | 6 void set align(String value) native "this.align = value;"; |
| 7 | 7 |
| 8 DocumentJs get contentDocument() native "return this.contentDocument;"; | 8 _DocumentJs get contentDocument() native "return this.contentDocument;"; |
| 9 | 9 |
| 10 DOMWindowJs get contentWindow() native "return this.contentWindow;"; | 10 _DOMWindowJs get contentWindow() native "return this.contentWindow;"; |
| 11 | 11 |
| 12 String get frameBorder() native "return this.frameBorder;"; | 12 String get frameBorder() native "return this.frameBorder;"; |
| 13 | 13 |
| 14 void set frameBorder(String value) native "this.frameBorder = value;"; | 14 void set frameBorder(String value) native "this.frameBorder = value;"; |
| 15 | 15 |
| 16 String get height() native "return this.height;"; | 16 String get height() native "return this.height;"; |
| 17 | 17 |
| 18 void set height(String value) native "this.height = value;"; | 18 void set height(String value) native "this.height = value;"; |
| 19 | 19 |
| 20 String get longDesc() native "return this.longDesc;"; | 20 String get longDesc() native "return this.longDesc;"; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 42 void set scrolling(String value) native "this.scrolling = value;"; | 42 void set scrolling(String value) native "this.scrolling = value;"; |
| 43 | 43 |
| 44 String get src() native "return this.src;"; | 44 String get src() native "return this.src;"; |
| 45 | 45 |
| 46 void set src(String value) native "this.src = value;"; | 46 void set src(String value) native "this.src = value;"; |
| 47 | 47 |
| 48 String get width() native "return this.width;"; | 48 String get width() native "return this.width;"; |
| 49 | 49 |
| 50 void set width(String value) native "this.width = value;"; | 50 void set width(String value) native "this.width = value;"; |
| 51 | 51 |
| 52 SVGDocumentJs getSVGDocument() native; | 52 _SVGDocumentJs getSVGDocument() native; |
| 53 } | 53 } |
| OLD | NEW |