Index: Source/core/html/BaseCheckableInputType.cpp |
diff --git a/Source/core/html/BaseCheckableInputType.cpp b/Source/core/html/BaseCheckableInputType.cpp |
index 28c069b524159a0ee2813c5725beaddfb9fea668..6867bd20f1c1008e85a0187ae5935dca3135e30b 100644 |
--- a/Source/core/html/BaseCheckableInputType.cpp |
+++ b/Source/core/html/BaseCheckableInputType.cpp |
@@ -44,7 +44,7 @@ using namespace HTMLNames; |
FormControlState BaseCheckableInputType::saveFormControlState() const |
{ |
- return FormControlState(element()->checked() ? ASCIILiteral("on") : ASCIILiteral("off")); |
+ return FormControlState(element()->checked() ? "on" : "off"); |
} |
void BaseCheckableInputType::restoreFormControlState(const FormControlState& state) |
@@ -93,7 +93,7 @@ void BaseCheckableInputType::accessKeyAction(bool sendMouseEvents) |
String BaseCheckableInputType::fallbackValue() const |
{ |
- return ASCIILiteral("on"); |
+ return "on"; |
} |
bool BaseCheckableInputType::storesValueSeparateFromAttribute() |