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

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

Issue 10384017: Minimal fix to get cross frame tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/dom/templates/html/frog/impl_Window.darttemplate ('k') | lib/html/frog/html_frog.dart » ('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 70707e9552d95f0faeb8d94730fd504a47f07478..2625d1fb8ad568e64ecb63dfdea51db039b74460 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -10691,10 +10691,6 @@ 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); }
@@ -21386,8 +21382,6 @@ 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);
@@ -21462,8 +21456,6 @@ 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);
@@ -30040,12 +30032,6 @@ 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;
@@ -39888,9 +39874,6 @@ interface Window extends EventTarget {
/** @domName DOMWindow.event */
final Event event;
- /** @domName DOMWindow.frameElement */
- final Element frameElement;
-
/** @domName DOMWindow.frames */
final Window frames;
@@ -39993,9 +39976,6 @@ interface Window extends EventTarget {
/** @domName DOMWindow.toolbar */
final BarInfo toolbar;
- /** @domName DOMWindow.top */
- final Window top;
-
/** @domName DOMWindow.webkitIndexedDB */
final IDBFactory webkitIndexedDB;
« no previous file with comments | « lib/dom/templates/html/frog/impl_Window.darttemplate ('k') | lib/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698