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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 26592009: Removing Element.createdCallback (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 708bdb016ca2a9c401377247d8acbd598516f465..a0b8a59ebd2d32769d66c030e6172b3d69eb8e82 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -8931,8 +8931,6 @@ abstract class Element extends Node implements ParentNode, ChildNode native "Ele
// Validate that this is a custom element & perform any additional
// initialization.
_initializeCustomElement(this);
-
- createdCallback();
}
/**
@@ -9244,13 +9242,13 @@ abstract class Element extends Node implements ParentNode, ChildNode native "Ele
/**
* Gets the position of this element relative to the client area of the page.
*/
- Rectangle get client => new Rectangle(clientLeft, clientTop, clientWidth,
+ Rectangle get client => new Rectangle(clientLeft, clientTop, clientWidth,
clientHeight);
/**
* Gets the offset of this element relative to its offsetParent.
*/
- Rectangle get offset => new Rectangle(offsetLeft, offsetTop, offsetWidth,
+ Rectangle get offset => new Rectangle(offsetLeft, offsetTop, offsetWidth,
offsetHeight);
/**
@@ -9279,15 +9277,6 @@ abstract class Element extends Node implements ParentNode, ChildNode native "Ele
}
/**
- * Called by the DOM when this element has been instantiated.
- *
- * Will be replaced by created constructor.
- */
- @Experimental()
- @deprecated
- void createdCallback() {}
-
- /**
* Called by the DOM when this element has been inserted into the live
* document.
*/
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698