Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(431)

Unified Diff: lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 11175014: Use CheckSecurityForNode to filter out insecure calls (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698