| Index: lib/html/templates/html/interface/interface_Element.darttemplate
|
| diff --git a/lib/html/templates/html/interface/interface_Element.darttemplate b/lib/html/templates/html/interface/interface_Element.darttemplate
|
| index 833fdfd945d8211cd8d59ceb85f3119c874bd5c1..bb11eb516282086dc92b8f56c823e5510db9dc94 100644
|
| --- a/lib/html/templates/html/interface/interface_Element.darttemplate
|
| +++ b/lib/html/templates/html/interface/interface_Element.darttemplate
|
| @@ -15,20 +15,6 @@ abstract class AttributeMap implements Map<String, String> {
|
| void operator []=(String key, value);
|
| }
|
|
|
| -/**
|
| - * All your element measurement needs in one place
|
| - */
|
| -abstract class ElementRect {
|
| - // Relative to offsetParent
|
| - ClientRect get client;
|
| - ClientRect get offset;
|
| - ClientRect get scroll;
|
| - // In global coords
|
| - ClientRect get bounding;
|
| - // In global coords
|
| - List<ClientRect> get clientRects;
|
| -}
|
| -
|
| abstract class NodeSelector {
|
| Element query(String selectors);
|
| List<Element> queryAll(String selectors);
|
| @@ -85,13 +71,6 @@ abstract class Element implements Node, NodeSelector {
|
| */
|
| void addHTML(String html);
|
|
|
| - /**
|
| - * @domName getClientRects, getBoundingClientRect, clientHeight, clientWidth,
|
| - * clientTop, clientLeft, offsetHeight, offsetWidth, offsetTop, offsetLeft,
|
| - * scrollHeight, scrollWidth, scrollTop, scrollLeft
|
| - */
|
| - Future<ElementRect> get rect;
|
| -
|
| /** @domName Window.getComputedStyle */
|
| Future<CSSStyleDeclaration> get computedStyle;
|
|
|
|
|