| Index: lib/html/dart2js/html_dart2js.dart
|
| diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
|
| index 537402ad1b709e237a548742bf3d9df70d89e9d9..b4ce75efcddadf3e15a4335b74e24808c2937172 100644
|
| --- a/lib/html/dart2js/html_dart2js.dart
|
| +++ b/lib/html/dart2js/html_dart2js.dart
|
| @@ -14302,9 +14302,6 @@ class _FormElementImpl extends _ElementImpl implements FormElement native "*HTML
|
| /// @domName HTMLFrameElement
|
| abstract class FrameElement implements Element {
|
|
|
| - /** @domName HTMLFrameElement.contentDocument */
|
| - abstract Document get contentDocument;
|
| -
|
| /** @domName HTMLFrameElement.contentWindow */
|
| abstract Window get contentWindow;
|
|
|
| @@ -14340,15 +14337,10 @@ abstract class FrameElement implements Element {
|
|
|
| /** @domName HTMLFrameElement.width */
|
| abstract int get width;
|
| -
|
| - /** @domName HTMLFrameElement.getSVGDocument */
|
| - SVGDocument getSVGDocument();
|
| }
|
|
|
| class _FrameElementImpl extends _ElementImpl implements FrameElement native "*HTMLFrameElement" {
|
|
|
| - final _DocumentImpl contentDocument;
|
| -
|
| Window get contentWindow => _convertNativeToDart_Window(this._contentWindow);
|
| Window get _contentWindow() => JS("Window", "#.contentWindow", this);
|
|
|
| @@ -14373,8 +14365,6 @@ class _FrameElementImpl extends _ElementImpl implements FrameElement native "*HT
|
| String src;
|
|
|
| final int width;
|
| -
|
| - _SVGDocumentImpl getSVGDocument() native;
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -16554,9 +16544,6 @@ abstract class IFrameElement implements Element {
|
|
|
| /** @domName HTMLIFrameElement.width */
|
| String width;
|
| -
|
| - /** @domName HTMLIFrameElement.getSVGDocument */
|
| - SVGDocument getSVGDocument();
|
| }
|
|
|
| class _IFrameElementImpl extends _ElementImpl implements IFrameElement native "*HTMLIFrameElement" {
|
| @@ -16587,8 +16574,6 @@ class _IFrameElementImpl extends _ElementImpl implements IFrameElement native "*
|
| String srcdoc;
|
|
|
| String width;
|
| -
|
| - _SVGDocumentImpl getSVGDocument() native;
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -22016,9 +22001,6 @@ abstract class ObjectElement implements Element {
|
| /** @domName HTMLObjectElement.codeType */
|
| String codeType;
|
|
|
| - /** @domName HTMLObjectElement.contentDocument */
|
| - abstract Document get contentDocument;
|
| -
|
| /** @domName HTMLObjectElement.data */
|
| String data;
|
|
|
| @@ -22082,8 +22064,6 @@ class _ObjectElementImpl extends _ElementImpl implements ObjectElement native "*
|
|
|
| String codeType;
|
|
|
| - final _DocumentImpl contentDocument;
|
| -
|
| String data;
|
|
|
| bool declare;
|
|
|