Index: Source/core/dom/Element.cpp |
diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp |
index d6fa5c1062830b0f6e856870154fbc20309c93eb..4e3e1aa992623e1a0c94adf5b58897062bdcb6c8 100644 |
--- a/Source/core/dom/Element.cpp |
+++ b/Source/core/dom/Element.cpp |
@@ -2859,7 +2859,7 @@ void Element::willModifyAttribute(const QualifiedName& name, const AtomicString& |
CustomElement::attributeDidChange(this, name.localName(), oldValue, newValue); |
} |
- if (OwnPtr<MutationObserverInterestGroup> recipients = MutationObserverInterestGroup::createForAttributesMutation(*this, name)) |
+ if (OwnPtrWillBeRawPtr<MutationObserverInterestGroup> recipients = MutationObserverInterestGroup::createForAttributesMutation(*this, name)) |
recipients->enqueueMutationRecord(MutationRecord::createAttributes(this, name, oldValue)); |
InspectorInstrumentation::willModifyDOMAttr(this, oldValue, newValue); |