mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 09:36:08 +00:00
LibWeb: Implement Element.removeAttributeNode()
This commit is contained in:
parent
f13bda60ba
commit
20bdda7f02
Notes:
sideshowbarker
2024-07-16 22:17:03 +09:00
Author: https://github.com/awesomekling
Commit: 20bdda7f02
Pull-request: https://github.com/SerenityOS/serenity/pull/23964
7 changed files with 43 additions and 1 deletions
|
@ -112,6 +112,7 @@ public:
|
|||
void append_attribute(Attr&);
|
||||
void remove_attribute(FlyString const& name);
|
||||
void remove_attribute_ns(Optional<FlyString> const& namespace_, FlyString const& name);
|
||||
WebIDL::ExceptionOr<JS::NonnullGCPtr<Attr>> remove_attribute_node(JS::NonnullGCPtr<Attr>);
|
||||
|
||||
WebIDL::ExceptionOr<bool> toggle_attribute(FlyString const& name, Optional<bool> force);
|
||||
size_t attribute_list_size() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue