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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 11299257: Fix dartium tests after legacy getter removal (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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 | sdk/lib/html/src/native_DOMImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
===================================================================
--- sdk/lib/html/dartium/html_dartium.dart (revision 15525)
+++ sdk/lib/html/dartium/html_dartium.dart (working copy)
@@ -8790,7 +8790,7 @@
}
return null;
}
- Element get $m_lastElementChild() => elements.last;
+ Element get $m_lastElementChild => elements.last;
Element get nextElementSibling => null;
Element get previousElementSibling => null;
Element get offsetParent => null;
@@ -30812,13 +30812,13 @@
_DOMWindowCrossFrame.internal();
// Fields.
- History get history() native "DOMWindow_history_cross_frame_Getter";
- Location get location() native "DOMWindow_location_cross_frame_Getter";
- bool get closed() native "DOMWindow_closed_Getter";
- int get length() native "DOMWindow_length_Getter";
- Window get opener() native "DOMWindow_opener_Getter";
- Window get parent() native "DOMWindow_parent_Getter";
- Window get top() native "DOMWindow_top_Getter";
+ History get history native "DOMWindow_history_cross_frame_Getter";
+ Location get location native "DOMWindow_location_cross_frame_Getter";
+ bool get closed native "DOMWindow_closed_Getter";
+ int get length native "DOMWindow_length_Getter";
+ Window get opener native "DOMWindow_opener_Getter";
+ Window get parent native "DOMWindow_parent_Getter";
+ Window get top native "DOMWindow_top_Getter";
// Methods.
void close() native "DOMWindow_close_Callback";
« no previous file with comments | « no previous file | sdk/lib/html/src/native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698