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

Unified Diff: third_party/WebKit/Source/core/svg/SVGElement.cpp

Issue 2652653002: Don't "repack" parameters in SVGElement::attributeChanged (Closed)
Patch Set: Rebase Created 3 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGElement.cpp
index b36c3850929e3d5bd607ae41a5577898e22d97d4..ecc8a6083c73aa9a31e3ac08b3ce9b0808453def 100644
--- a/third_party/WebKit/Source/core/svg/SVGElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp
@@ -922,9 +922,7 @@ void SVGElement::sendSVGLoadEventToSelfAndAncestorChainIfPossible() {
}
void SVGElement::attributeChanged(const AttributeModificationParams& params) {
- Element::attributeChanged(
- AttributeModificationParams(params.name, params.oldValue, params.newValue,
- AttributeModificationReason::kDirectly));
+ Element::attributeChanged(params);
if (params.name == HTMLNames::idAttr) {
rebuildAllIncomingReferences();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698