Index: Source/core/dom/Document.cpp |
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp |
index bf94ee99f1273387e5ff43cc75777301dea38f3c..d721e4f70ef5cc5e9ed19d164121c13196463f12 100644 |
--- a/Source/core/dom/Document.cpp |
+++ b/Source/core/dom/Document.cpp |
@@ -5726,7 +5726,7 @@ void Document::getTransitionElementData(Vector<TransitionElementData>& elementDa |
void Document::hideTransitionElements(const AtomicString& cssSelector) |
{ |
TrackExceptionState exceptionState; |
- RefPtr<StaticNodeList> nodeList = querySelectorAll(cssSelector, exceptionState); |
+ RefPtrWillBeRawPtr<StaticNodeList> nodeList = querySelectorAll(cssSelector, exceptionState); |
if (nodeList && !exceptionState.hadException()) { |
unsigned nodeListLength = nodeList->length(); |