Index: Source/core/dom/Element.cpp |
diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp |
index 95fdfd339f472af7fde79d2f29f2459e2a719154..68b8ee785d835dded5a72a9fc1578645d077b5b0 100644 |
--- a/Source/core/dom/Element.cpp |
+++ b/Source/core/dom/Element.cpp |
@@ -2792,7 +2792,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); |