mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
LibWeb: Port HTMLInputElement from DeprecatedString to String
And dealing with the fallout of doing so. I am not 100% sure that it is safe for us to be treating Strings in the value sanitization algorithm in all cases as if they are ASCII, but this commit does not change any existing behaviour there.
This commit is contained in:
parent
6c9fffc4c1
commit
e3bc8610a9
6 changed files with 70 additions and 74 deletions
|
@ -65,7 +65,7 @@ public:
|
|||
// https://www.w3.org/TR/html-aria/#el-button
|
||||
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::button; }
|
||||
|
||||
virtual DeprecatedString value() const override;
|
||||
virtual String value() const override;
|
||||
|
||||
virtual bool has_activation_behavior() const override;
|
||||
virtual void activation_behavior(DOM::Event const&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue