| Index: Source/core/html/forms/CheckboxInputType.cpp
|
| diff --git a/Source/core/html/forms/CheckboxInputType.cpp b/Source/core/html/forms/CheckboxInputType.cpp
|
| index 9a77643e4310ec4f3185b8def23842ab0da2a72f..6c714a82c3544c28eaa80f80713a77036e71bec2 100644
|
| --- a/Source/core/html/forms/CheckboxInputType.cpp
|
| +++ b/Source/core/html/forms/CheckboxInputType.cpp
|
| @@ -102,9 +102,9 @@ bool CheckboxInputType::isCheckbox() const
|
| return true;
|
| }
|
|
|
| -bool CheckboxInputType::supportsIndeterminateAppearance() const
|
| +bool CheckboxInputType::shouldAppearIndeterminate() const
|
| {
|
| - return true;
|
| + return element().indeterminate();
|
| }
|
|
|
| } // namespace WebCore
|
|
|