Index: tools/dom/src/CssRectangle.dart |
diff --git a/tools/dom/src/CssRectangle.dart b/tools/dom/src/CssRectangle.dart |
index 6d7972b333e3f7e6998d4a7e6cbb31a6ca5a9c3c..6808927349820367614c1c6218f425a4e0daf474 100644 |
--- a/tools/dom/src/CssRectangle.dart |
+++ b/tools/dom/src/CssRectangle.dart |
@@ -148,16 +148,15 @@ class _MarginCssRect extends CssRect { |
/** |
* A class for representing CSS dimensions. |
* |
- * In contrast to the more general purpose [Rectangle] class, this class's |
- * values are mutable, so one can change the height of an element |
- * programmatically. |
+ * In contrast to the more general purpose [Rect] class, this class's values are |
+ * mutable, so one can change the height of an element programmatically. |
* |
* _Important_ _note_: use of these methods will perform CSS calculations that |
* can trigger a browser reflow. Therefore, use of these properties _during_ an |
* animation frame is discouraged. See also: |
* [Browser Reflow](https://developers.google.com/speed/articles/reflow) |
*/ |
-abstract class CssRect extends RectangleBase<num> implements Rectangle<num> { |
+abstract class CssRect extends RectBase implements Rect { |
Element _element; |
CssRect(this._element); |