| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface HTMLFrameElement extends HTMLElement { | 7 interface HTMLFrameElement extends HTMLElement { |
| 8 | 8 |
| 9 Document get contentDocument(); | 9 final Document contentDocument; |
| 10 | 10 |
| 11 DOMWindow get contentWindow(); | 11 final DOMWindow contentWindow; |
| 12 | 12 |
| 13 String get frameBorder(); | 13 String frameBorder; |
| 14 | 14 |
| 15 void set frameBorder(String value); | 15 final int height; |
| 16 | 16 |
| 17 int get height(); | 17 String location; |
| 18 | 18 |
| 19 String get location(); | 19 String longDesc; |
| 20 | 20 |
| 21 void set location(String value); | 21 String marginHeight; |
| 22 | 22 |
| 23 String get longDesc(); | 23 String marginWidth; |
| 24 | 24 |
| 25 void set longDesc(String value); | 25 String name; |
| 26 | 26 |
| 27 String get marginHeight(); | 27 bool noResize; |
| 28 | 28 |
| 29 void set marginHeight(String value); | 29 String scrolling; |
| 30 | 30 |
| 31 String get marginWidth(); | 31 String src; |
| 32 | 32 |
| 33 void set marginWidth(String value); | 33 final int width; |
| 34 | |
| 35 String get name(); | |
| 36 | |
| 37 void set name(String value); | |
| 38 | |
| 39 bool get noResize(); | |
| 40 | |
| 41 void set noResize(bool value); | |
| 42 | |
| 43 String get scrolling(); | |
| 44 | |
| 45 void set scrolling(String value); | |
| 46 | |
| 47 String get src(); | |
| 48 | |
| 49 void set src(String value); | |
| 50 | |
| 51 int get width(); | |
| 52 | 34 |
| 53 SVGDocument getSVGDocument(); | 35 SVGDocument getSVGDocument(); |
| 54 } | 36 } |
| OLD | NEW |