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

Unified Diff: lib/html/dartium/html_dartium.dart

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 | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index c1e51fe9e2509b4ec4ea2c84a9115c22d9ad9e05..04187a4641b5029fe7bc113eb6e98e40af4ba841 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -15843,9 +15843,6 @@ class _FormElementImpl extends _ElementImpl_Merged implements FormElement {
/// @domName HTMLFrameElement
abstract class FrameElement implements Element {
- /** @domName HTMLFrameElement.contentDocument */
- abstract Document get contentDocument;
-
/** @domName HTMLFrameElement.contentWindow */
abstract Window get contentWindow;
@@ -15881,9 +15878,6 @@ abstract class FrameElement implements Element {
/** @domName HTMLFrameElement.width */
abstract int get width;
-
- /** @domName HTMLFrameElement.getSVGDocument */
- SVGDocument getSVGDocument();
}
// 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
@@ -18280,9 +18274,6 @@ abstract class IFrameElement implements Element {
/** @domName HTMLIFrameElement.width */
String width;
-
- /** @domName HTMLIFrameElement.getSVGDocument */
- SVGDocument getSVGDocument();
}
// 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
@@ -24295,9 +24286,6 @@ abstract class ObjectElement implements Element {
/** @domName HTMLObjectElement.codeType */
String codeType;
- /** @domName HTMLObjectElement.contentDocument */
- abstract Document get contentDocument;
-
/** @domName HTMLObjectElement.data */
String data;
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698