Index: Source/core/dom/Document.cpp |
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp |
index d4cada873fd79db991be809ab741937cbd2e69d6..6b1ae9167e11b1863d50bffd77f7655a84452a86 100644 |
--- a/Source/core/dom/Document.cpp |
+++ b/Source/core/dom/Document.cpp |
@@ -1058,9 +1058,9 @@ PassRefPtr<Element> Document::createElementNS(const String& namespaceURI, const |
String Document::readyState() const |
{ |
- DEFINE_STATIC_LOCAL(const String, loading, (ASCIILiteral("loading"))); |
- DEFINE_STATIC_LOCAL(const String, interactive, (ASCIILiteral("interactive"))); |
- DEFINE_STATIC_LOCAL(const String, complete, (ASCIILiteral("complete"))); |
+ DEFINE_STATIC_LOCAL(const String, loading, ("loading")); |
+ DEFINE_STATIC_LOCAL(const String, interactive, ("interactive")); |
+ DEFINE_STATIC_LOCAL(const String, complete, ("complete")); |
switch (m_readyState) { |
case Loading: |