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

Unified Diff: lib/html/src/dart2js_DOMImplementation.dart

Issue 11074005: Wrap Window in case it's a window from a different page / frame. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Cleanup 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:
View side-by-side diff with in-line comments
Download patch
Index: lib/html/src/dart2js_DOMImplementation.dart
diff --git a/lib/html/src/dart2js_DOMImplementation.dart b/lib/html/src/dart2js_DOMImplementation.dart
index 85bbd46e2d080478773cc00baa120d923b60a57f..955841c2aa488b0be06926565a387e7103f22425 100644
--- a/lib/html/src/dart2js_DOMImplementation.dart
+++ b/lib/html/src/dart2js_DOMImplementation.dart
@@ -63,7 +63,7 @@ class _LocationCrossFrameImpl implements Location {
void set href(String val) => _setHref(_location, val);
static void _setHref(location, val) {
- JS('void', '#.href = #', _location, val);
+ JS('void', '#.href = #', location, val);
}
// Implementation support.

Powered by Google App Engine
This is Rietveld 408576698