Index: Source/core/html/HTMLObjectElement.cpp |
diff --git a/Source/core/html/HTMLObjectElement.cpp b/Source/core/html/HTMLObjectElement.cpp |
index a7194104d0972854e979ac61252fd4d14b19eee4..326eb083d1c9b011f678538bea34b96f01df3701 100644 |
--- a/Source/core/html/HTMLObjectElement.cpp |
+++ b/Source/core/html/HTMLObjectElement.cpp |
@@ -242,7 +242,7 @@ bool HTMLObjectElement::shouldAllowQuickTimeClassIdQuirk() |
|| !equalIgnoringCase(classId(), "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B")) |
return false; |
- RefPtr<HTMLCollection> metaElements = document().getElementsByTagName(HTMLNames::metaTag.localName()); |
+ RefPtrWillBeRawPtr<HTMLCollection> metaElements = document().getElementsByTagName(HTMLNames::metaTag.localName()); |
unsigned length = metaElements->length(); |
for (unsigned i = 0; i < length; ++i) { |
ASSERT(metaElements->item(i)->isHTMLElement()); |