| Index: third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp b/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| index 37736c59d0fbdb6271e964d17f5e5f795c21e778..a26795b85efe9b4cef0e3df3e8c6d38fdcf3a7e3 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| @@ -635,11 +635,11 @@ bool HTMLFormControlElement::isSuccessfulSubmitButton() const
|
| return canBeSuccessfulSubmitButton() && !isDisabledFormControl();
|
| }
|
|
|
| -bool HTMLFormControlElement::isDefaultButtonForForm() const
|
| +bool HTMLFormControlElement::matchesDefaultPseudoClass() const
|
| {
|
| - // HTMLFormElement::defaultButton() traverses the tree. So we check
|
| + // HTMLFormElement::findDefaultButton() traverses the tree. So we check
|
| // canBeSuccessfulSubmitButton() first for early return.
|
| - return canBeSuccessfulSubmitButton() && form() && form()->defaultButton() == this;
|
| + return canBeSuccessfulSubmitButton() && form() && form()->findDefaultButton() == this;
|
| }
|
|
|
| HTMLFormControlElement* HTMLFormControlElement::enclosingFormControlElement(Node* node)
|
|
|