| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index 51c4fd0ef83fef4602c59a246282e813829fc202..233384b9aad6835862fb4ed61aec4d26020f65d2 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -1228,11 +1228,6 @@ const AtomicString& HTMLInputElement::defaultValue() const
|
| return fastGetAttribute(valueAttr);
|
| }
|
|
|
| -void HTMLInputElement::setDefaultValue(const AtomicString& value)
|
| -{
|
| - setAttribute(valueAttr, value);
|
| -}
|
| -
|
| static inline bool isRFC2616TokenCharacter(UChar ch)
|
| {
|
| return isASCII(ch) && ch > ' ' && ch != '"' && ch != '(' && ch != ')' && ch != ',' && ch != '/' && (ch < ':' || ch > '@') && (ch < '[' || ch > ']') && ch != '{' && ch != '}' && ch != 0x7f;
|
|
|