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

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

Issue 10356092: Revert "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, 7 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 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;
« 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