| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index c313f259bfe390d92676f3f7df451ff4c0dee57e..2efb3f47c3f778c1f751e6a022f26fb547d01f88 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -2231,7 +2231,7 @@ void Element::setOuterHTML(const String& html, ExceptionState& exceptionState)
|
| return;
|
| }
|
|
|
| - RefPtr<Element> parent = toElement(p);
|
| + RefPtrWillBeRawPtr<Element> parent = toElement(p);
|
| RefPtr<Node> prev = previousSibling();
|
| RefPtr<Node> next = nextSibling();
|
|
|
| @@ -2318,7 +2318,7 @@ void Element::insertAdjacentText(const String& where, const String& text, Except
|
|
|
| void Element::insertAdjacentHTML(const String& where, const String& markup, ExceptionState& exceptionState)
|
| {
|
| - RefPtr<Element> contextElement = contextElementForInsertion(where, this, exceptionState);
|
| + RefPtrWillBeRawPtr<Element> contextElement = contextElementForInsertion(where, this, exceptionState);
|
| if (!contextElement)
|
| return;
|
|
|
|
|