| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index 810f23096122548078ea5931588a1e7d12e14d13..1b8c4e42c662de3faa405572a80817205e77c1e7 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -10739,6 +10739,10 @@ class _IFrameElementImpl extends _ElementImpl implements IFrameElement {
|
|
|
| void set align(String value) { _ptr.align = _unwrap(value); }
|
|
|
| + Document get contentDocument() => _wrap(_ptr.contentDocument);
|
| +
|
| + Window get contentWindow() => _wrap(_ptr.contentWindow);
|
| +
|
| String get frameBorder() => _wrap(_ptr.frameBorder);
|
|
|
| void set frameBorder(String value) { _ptr.frameBorder = _unwrap(value); }
|
| @@ -21518,6 +21522,8 @@ class _WindowImpl extends _EventTargetImpl implements Window {
|
|
|
| Event get event() => _wrap(_ptr.event);
|
|
|
| + Element get frameElement() => _wrap(_ptr.frameElement);
|
| +
|
| Window get frames() => _wrap(_ptr.frames);
|
|
|
| History get history() => _wrap(_ptr.history);
|
| @@ -21592,6 +21598,8 @@ class _WindowImpl extends _EventTargetImpl implements Window {
|
|
|
| BarInfo get toolbar() => _wrap(_ptr.toolbar);
|
|
|
| + Window get top() => _wrap(_ptr.top);
|
| +
|
| IDBFactory get webkitIndexedDB() => _wrap(_ptr.webkitIndexedDB);
|
|
|
| NotificationCenter get webkitNotifications() => _wrap(_ptr.webkitNotifications);
|
| @@ -30162,6 +30170,12 @@ interface IFrameElement extends Element {
|
| /** @domName HTMLIFrameElement.align */
|
| String align;
|
|
|
| + /** @domName HTMLIFrameElement.contentDocument */
|
| + final Document contentDocument;
|
| +
|
| + /** @domName HTMLIFrameElement.contentWindow */
|
| + final Window contentWindow;
|
| +
|
| /** @domName HTMLIFrameElement.frameBorder */
|
| String frameBorder;
|
|
|
| @@ -40002,6 +40016,9 @@ interface Window extends EventTarget {
|
| /** @domName DOMWindow.event */
|
| final Event event;
|
|
|
| + /** @domName DOMWindow.frameElement */
|
| + final Element frameElement;
|
| +
|
| /** @domName DOMWindow.frames */
|
| final Window frames;
|
|
|
| @@ -40104,6 +40121,9 @@ interface Window extends EventTarget {
|
| /** @domName DOMWindow.toolbar */
|
| final BarInfo toolbar;
|
|
|
| + /** @domName DOMWindow.top */
|
| + final Window top;
|
| +
|
| /** @domName DOMWindow.webkitIndexedDB */
|
| final IDBFactory webkitIndexedDB;
|
|
|
|
|