1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:18:13 +00:00

LibWeb: Implement details_notification_task_steps for <details>

This commit is contained in:
stelar7 2023-06-02 21:44:03 +02:00 committed by Andreas Kling
parent 8773122f6b
commit fd360ba171
3 changed files with 44 additions and 2 deletions

View file

@ -20,6 +20,12 @@ public:
// https://www.w3.org/TR/html-aria/#el-details
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::group; };
// ^Element
WebIDL::ExceptionOr<void> set_attribute(DeprecatedFlyString const& name, DeprecatedString const& value) override;
void remove_attribute(DeprecatedFlyString const& name) override;
void run_details_notification_task_steps();
private:
HTMLDetailsElement(DOM::Document&, DOM::QualifiedName);