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:
parent
8773122f6b
commit
fd360ba171
3 changed files with 44 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue