| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName HTMLIFrameElement |
| 8 interface IFrameElement extends Element default _Elements { |
| 9 |
| 10 IFrameElement(); |
| 11 |
| 12 /** @domName HTMLIFrameElement.align */ |
| 13 String align; |
| 14 |
| 15 /** @domName HTMLIFrameElement.contentWindow */ |
| 16 final Window contentWindow; |
| 17 |
| 18 /** @domName HTMLIFrameElement.frameBorder */ |
| 19 String frameBorder; |
| 20 |
| 21 /** @domName HTMLIFrameElement.height */ |
| 22 String height; |
| 23 |
| 24 /** @domName HTMLIFrameElement.longDesc */ |
| 25 String longDesc; |
| 26 |
| 27 /** @domName HTMLIFrameElement.marginHeight */ |
| 28 String marginHeight; |
| 29 |
| 30 /** @domName HTMLIFrameElement.marginWidth */ |
| 31 String marginWidth; |
| 32 |
| 33 /** @domName HTMLIFrameElement.name */ |
| 34 String name; |
| 35 |
| 36 /** @domName HTMLIFrameElement.sandbox */ |
| 37 String sandbox; |
| 38 |
| 39 /** @domName HTMLIFrameElement.scrolling */ |
| 40 String scrolling; |
| 41 |
| 42 /** @domName HTMLIFrameElement.src */ |
| 43 String src; |
| 44 |
| 45 /** @domName HTMLIFrameElement.srcdoc */ |
| 46 String srcdoc; |
| 47 |
| 48 /** @domName HTMLIFrameElement.width */ |
| 49 String width; |
| 50 |
| 51 /** @domName HTMLIFrameElement.getSVGDocument */ |
| 52 SVGDocument getSVGDocument(); |
| 53 } |
| OLD | NEW |