| Index: third_party/WebKit/Source/core/html/HTMLButtonElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLButtonElement.cpp b/third_party/WebKit/Source/core/html/HTMLButtonElement.cpp
|
| index 44a97178edc587d66835b7fa6c013f9020a511bd..2e500c180dbad2461ab4c8cdfd493fe25532c258 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLButtonElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLButtonElement.cpp
|
| @@ -63,15 +63,15 @@ const AtomicString& HTMLButtonElement::formControlType() const
|
| {
|
| switch (m_type) {
|
| case SUBMIT: {
|
| - DEFINE_STATIC_LOCAL(const AtomicString, submit, ("submit", AtomicString::ConstructFromLiteral));
|
| + DEFINE_STATIC_LOCAL(const AtomicString, submit, ("submit"));
|
| return submit;
|
| }
|
| case BUTTON: {
|
| - DEFINE_STATIC_LOCAL(const AtomicString, button, ("button", AtomicString::ConstructFromLiteral));
|
| + DEFINE_STATIC_LOCAL(const AtomicString, button, ("button"));
|
| return button;
|
| }
|
| case RESET: {
|
| - DEFINE_STATIC_LOCAL(const AtomicString, reset, ("reset", AtomicString::ConstructFromLiteral));
|
| + DEFINE_STATIC_LOCAL(const AtomicString, reset, ("reset"));
|
| return reset;
|
| }
|
| }
|
|
|