| 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.
|
| */
|
|
|