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

Unified Diff: Source/core/svg/SVGTRefElement.cpp

Issue 19097005: Remove one SVG animated type special case from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix the regressions Created 7 years, 5 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
Index: Source/core/svg/SVGTRefElement.cpp
diff --git a/Source/core/svg/SVGTRefElement.cpp b/Source/core/svg/SVGTRefElement.cpp
index 553ba68bbe51b05bb44ccd619af898c13efc177b..5d2e051d91e82ac52cd57746151b0ae61bf0f546 100644
--- a/Source/core/svg/SVGTRefElement.cpp
+++ b/Source/core/svg/SVGTRefElement.cpp
@@ -180,7 +180,7 @@ void SVGTRefElement::detachTarget()
// Mark the referenced ID as pending.
String id;
- SVGURIReference::targetElementFromIRIString(href(), document(), &id);
+ SVGURIReference::targetElementFromIRIString(hrefCurrentValue(), document(), &id);
if (!id.isEmpty())
document()->accessSVGExtensions()->addPendingResource(id, this);
}
@@ -260,7 +260,7 @@ void SVGTRefElement::buildPendingResource()
return;
String id;
- RefPtr<Element> target = SVGURIReference::targetElementFromIRIString(href(), document(), &id);
+ RefPtr<Element> target = SVGURIReference::targetElementFromIRIString(hrefCurrentValue(), document(), &id);
if (!target.get()) {
if (id.isEmpty())
return;

Powered by Google App Engine
This is Rietveld 408576698