Index: third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp |
diff --git a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp |
index 1eeb0c9e1ecf38e38ed3ead4c0067c24d50959b5..bffa584cba6dca4b3035d5966957d4203668315f 100644 |
--- a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp |
+++ b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp |
@@ -32,11 +32,11 @@ protected: |
HTMLFormElement* populateForm(const char* enctype, const char* html) |
{ |
StringBuilder b; |
- b.appendLiteral("<!DOCTYPE html><html><body><form id='theForm' enctype='"); |
+ b.append("<!DOCTYPE html><html><body><form id='theForm' enctype='"); |
b.append(enctype); |
- b.appendLiteral("'>"); |
+ b.append("'>"); |
b.append(html); |
- b.appendLiteral("</form></body></html>"); |
+ b.append("</form></body></html>"); |
document().documentElement()->setInnerHTML(b.toString(), ASSERT_NO_EXCEPTION); |
document().view()->updateAllLifecyclePhases(); |
HTMLFormElement* form = toHTMLFormElement(document().getElementById("theForm")); |