| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index 5732c1ebd5469464a8cdc917a75156394a97d705..7f616d9c929fb02d66d2fd1dafb1069b5c4064ae 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -642,12 +642,14 @@ $(ANNOTATIONS)abstract class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| /**
|
| * Gets the position of this element relative to the client area of the page.
|
| */
|
| - Rect get client => new Rect(clientLeft, clientTop, clientWidth, clientHeight);
|
| + Rectangle get client => new Rectangle(clientLeft, clientTop, clientWidth,
|
| + clientHeight);
|
|
|
| /**
|
| * Gets the offset of this element relative to its offsetParent.
|
| */
|
| - Rect get offset => new Rect(offsetLeft, offsetTop, offsetWidth, offsetHeight);
|
| + Rectangle get offset => new Rectangle(offsetLeft, offsetTop, offsetWidth,
|
| + offsetHeight);
|
|
|
| /**
|
| * Adds the specified text after the last child of this element.
|
|
|