Index: Source/core/dom/Element.cpp |
diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp |
index cca4eab671f19e85afd63d5b385d881983ffa15d..f0b7b12554dac75334e698614c4d248274eebca2 100644 |
--- a/Source/core/dom/Element.cpp |
+++ b/Source/core/dom/Element.cpp |
@@ -2000,7 +2000,7 @@ PassRefPtr<Attr> Element::removeAttributeNode(Attr* attr, ExceptionState& except |
bool Element::parseAttributeName(QualifiedName& out, const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState) |
{ |
- String prefix, localName; |
+ AtomicString prefix, localName; |
if (!Document::parseQualifiedName(qualifiedName, prefix, localName, exceptionState)) |
return false; |
ASSERT(!exceptionState.hadException()); |