Index: Source/core/dom/shadow/ShadowRoot.cpp |
diff --git a/Source/core/dom/shadow/ShadowRoot.cpp b/Source/core/dom/shadow/ShadowRoot.cpp |
index 7a6aba84f7c54c8292bed5f7984c1974f4938cb0..f11186daebfa5c51033bf5fd9437529fb04d9fbc 100644 |
--- a/Source/core/dom/shadow/ShadowRoot.cpp |
+++ b/Source/core/dom/shadow/ShadowRoot.cpp |
@@ -126,7 +126,7 @@ void ShadowRoot::setInnerHTML(const String& markup, ExceptionState& exceptionSta |
return; |
} |
- if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, "innerHTML", exceptionState)) |
+ if (RefPtrWillBeRawPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, "innerHTML", exceptionState)) |
replaceChildrenWithFragment(this, fragment.release(), exceptionState); |
} |