Title: [160415] trunk/Source/WebCore
Revision
160415
Author
[email protected]
Date
2013-12-11 01:45:37 -0800 (Wed, 11 Dec 2013)

Log Message

REGRESSION(r160389): SVG test assertion extravaganza.

Unreviewed. Use getAttribute() instead of fastGetAttribute() for
the "type" attribute since it's animatable on SVG elements.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (160414 => 160415)


--- trunk/Source/WebCore/ChangeLog	2013-12-11 09:27:32 UTC (rev 160414)
+++ trunk/Source/WebCore/ChangeLog	2013-12-11 09:45:37 UTC (rev 160415)
@@ -1,3 +1,10 @@
+2013-12-11  Andreas Kling  <[email protected]>
+
+        REGRESSION(r160389): SVG test assertion extravaganza.
+
+        Unreviewed. Use getAttribute() instead of fastGetAttribute() for
+        the "type" attribute since it's animatable on SVG elements.
+
 2013-12-11  Gyuyoung Kim  <[email protected]>
 
         Set m_nextBreakablePosition as private in InlineIterator, and use it.

Modified: trunk/Source/WebCore/svg/SVGScriptElement.cpp (160414 => 160415)


--- trunk/Source/WebCore/svg/SVGScriptElement.cpp	2013-12-11 09:27:32 UTC (rev 160414)
+++ trunk/Source/WebCore/svg/SVGScriptElement.cpp	2013-12-11 09:45:37 UTC (rev 160415)
@@ -160,7 +160,7 @@
 
 String SVGScriptElement::typeAttributeValue() const
 {
-    return fastGetAttribute(SVGNames::typeAttr).string();
+    return getAttribute(SVGNames::typeAttr).string();
 }
 
 String SVGScriptElement::languageAttributeValue() const
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to