| 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: |
| 6 // This file contains documentation that is merged into the real source. |
| 7 // Do not make code changes here. |
| 8 |
| 9 /// @domName HTMLFrameElement |
| 10 interface FrameElement extends Element { |
| 11 |
| 12 /** @domName HTMLFrameElement.contentDocument */ |
| 13 final Document contentDocument; |
| 14 |
| 15 /** @domName HTMLFrameElement.contentWindow */ |
| 16 final Window contentWindow; |
| 17 |
| 18 /** @domName HTMLFrameElement.frameBorder */ |
| 19 String frameBorder; |
| 20 |
| 21 /** @domName HTMLFrameElement.height */ |
| 22 final int height; |
| 23 |
| 24 /** @domName HTMLFrameElement.location */ |
| 25 String location; |
| 26 |
| 27 /** @domName HTMLFrameElement.longDesc */ |
| 28 String longDesc; |
| 29 |
| 30 /** @domName HTMLFrameElement.marginHeight */ |
| 31 String marginHeight; |
| 32 |
| 33 /** @domName HTMLFrameElement.marginWidth */ |
| 34 String marginWidth; |
| 35 |
| 36 /** @domName HTMLFrameElement.name */ |
| 37 String name; |
| 38 |
| 39 /** @domName HTMLFrameElement.noResize */ |
| 40 bool noResize; |
| 41 |
| 42 /** @domName HTMLFrameElement.scrolling */ |
| 43 String scrolling; |
| 44 |
| 45 /** @domName HTMLFrameElement.src */ |
| 46 String src; |
| 47 |
| 48 /** @domName HTMLFrameElement.width */ |
| 49 final int width; |
| 50 |
| 51 /** @domName HTMLFrameElement.getSVGDocument */ |
| 52 SVGDocument getSVGDocument(); |
| 53 } |
| OLD | NEW |