| Index: tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_SVGElement.darttemplate b/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| index 384aac70fab5c844332cb3e603eb4e9f661403e0..d52a03862249599b32a99eb373ab206d62269c2d 100644
|
| --- a/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| @@ -12,7 +12,7 @@ class AttributeClassSet extends CssClassSetImpl {
|
| Set<String> readClasses() {
|
| var classname = _element.attributes['class'];
|
| if (classname is AnimatedString) {
|
| - classname = classname.baseVal;
|
| + classname = (classname as AnimatedString).baseVal;
|
| }
|
|
|
| Set<String> s = new LinkedHashSet<String>();
|
|
|