mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 01:08:56 +00:00
LibWeb: Update is_autocapitalize_inheriting
method name with spec
This was changed when the autocorrect attribute was introduced:
7bab05a
This commit is contained in:
parent
e539990c7f
commit
11457e533a
Notes:
github-actions[bot]
2025-08-29 14:48:37 +00:00
Author: https://github.com/Calme1709
Commit: 11457e533a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4907
Reviewed-by: https://github.com/Lubrsi ✅
Reviewed-by: https://github.com/ananas-dev
7 changed files with 7 additions and 7 deletions
|
@ -91,7 +91,7 @@ public:
|
|||
virtual bool is_resettable() const { return false; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const { return false; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const { return false; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#concept-button
|
||||
virtual bool is_button() const { return false; }
|
||||
|
|
|
@ -60,7 +60,7 @@ public:
|
|||
virtual bool is_submittable() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#concept-button
|
||||
// https://html.spec.whatwg.org/multipage/form-elements.html#the-button-element:concept-button
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
virtual bool is_listed() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
||||
|
||||
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::group; }
|
||||
|
||||
|
|
|
@ -182,7 +182,7 @@ public:
|
|||
virtual bool is_resettable() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#concept-button
|
||||
virtual bool is_button() const override;
|
||||
|
|
|
@ -45,7 +45,7 @@ public:
|
|||
virtual bool is_resettable() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
||||
|
||||
// ^HTMLElement
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-label
|
||||
|
|
|
@ -83,7 +83,7 @@ public:
|
|||
virtual bool is_resettable() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
||||
|
||||
// ^HTMLElement
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-label
|
||||
|
|
|
@ -60,7 +60,7 @@ public:
|
|||
virtual bool is_resettable() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
||||
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
||||
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#category-label
|
||||
virtual bool is_labelable() const override { return true; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue