Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1400)

Unified Diff: tools/dom/templates/html/impl/impl_SVGElement.darttemplate

Issue 2905223002: Cherry-picks of multiple html CLs
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>();
« no previous file with comments | « tools/dom/templates/html/impl/impl_HTMLSelectElement.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698