Index: sdk/lib/html/templates/html/impl/impl_Element.darttemplate |
diff --git a/sdk/lib/html/templates/html/impl/impl_Element.darttemplate b/sdk/lib/html/templates/html/impl/impl_Element.darttemplate |
index cd532c5c838f73efbb83228b1c745598b21df45e..cbbb7a9c1f270ceeecb1d18aa3e4455ddde4ffb7 100644 |
--- a/sdk/lib/html/templates/html/impl/impl_Element.darttemplate |
+++ b/sdk/lib/html/templates/html/impl/impl_Element.darttemplate |
@@ -9,7 +9,7 @@ part of html; |
class _ChildrenElementList implements List { |
// Raw Element. |
final Element _element; |
- final HTMLCollection _childElements; |
+ final HtmlCollection _childElements; |
_ChildrenElementList._wrap(Element element) |
: _childElements = element.$dom_children, |
@@ -413,16 +413,16 @@ abstract class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
} |
/** @domName Window.getComputedStyle */ |
- Future<CSSStyleDeclaration> get computedStyle { |
+ Future<CssStyleDeclaration> get computedStyle { |
// TODO(jacobr): last param should be null, see b/5045788 |
return getComputedStyle(''); |
} |
/** @domName Window.getComputedStyle */ |
- Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) { |
+ Future<CssStyleDeclaration> getComputedStyle(String pseudoElement) { |
return _createMeasurementFuture( |
() => window.$dom_getComputedStyle(this, pseudoElement), |
- new Completer<CSSStyleDeclaration>()); |
+ new Completer<CssStyleDeclaration>()); |
} |
/** |