LibWeb: Implement Element.removeAttributeNS

This commit is contained in:
Shannon Booth 2024-01-14 18:56:28 +13:00 committed by Andrew Kaster
commit 3910efb80b
Notes: sideshowbarker 2024-07-17 08:59:18 +09:00
5 changed files with 59 additions and 1 deletions

View file

@ -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<bool> toggle_attribute(FlyString const& name, Optional<bool> force);
size_t attribute_list_size() const;