summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/svg/svg_script_element.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/svg/svg_script_element.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/svg/svg_script_element.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/svg/svg_script_element.cc b/chromium/third_party/blink/renderer/core/svg/svg_script_element.cc
index a2aa6bf09cd..153028af10f 100644
--- a/chromium/third_party/blink/renderer/core/svg/svg_script_element.cc
+++ b/chromium/third_party/blink/renderer/core/svg/svg_script_element.cc
@@ -53,14 +53,15 @@ void SVGScriptElement::ParseAttribute(
}
}
-void SVGScriptElement::SvgAttributeChanged(const QualifiedName& attr_name) {
- if (SVGURIReference::IsKnownAttribute(attr_name)) {
+void SVGScriptElement::SvgAttributeChanged(
+ const SvgAttributeChangedParams& params) {
+ if (SVGURIReference::IsKnownAttribute(params.name)) {
SVGElement::InvalidationGuard invalidation_guard(this);
loader_->HandleSourceAttribute(LegacyHrefString(*this));
return;
}
- SVGElement::SvgAttributeChanged(attr_name);
+ SVGElement::SvgAttributeChanged(params);
}
Node::InsertionNotificationRequest SVGScriptElement::InsertedInto(
@@ -171,7 +172,7 @@ void SVGScriptElement::DispatchErrorEvent() {
void SVGScriptElement::SetScriptElementForBinding(
HTMLScriptElementOrSVGScriptElement& element) {
- if (!IsInV1ShadowTree())
+ if (!IsInShadowTree())
element.SetSVGScriptElement(this);
}