Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / DatasetDOMStringMap.cpp
index 777be3d..56207a8 100644 (file)
@@ -125,7 +125,7 @@ static bool isValidPropertyName(const String& name)
 static AtomicString convertPropertyNameToAttributeName(const String& name)
 {
     StringBuilder builder;
-    builder.append("data-");
+    builder.appendLiteral("data-");
 
     unsigned length = name.length();
     for (unsigned i = 0; i < length; ++i) {