1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:27:35 +00:00

LibWeb: Implement all "attributes" mutation records for MutationObserver

This commit is contained in:
Luke Wilde 2022-07-11 16:40:01 +01:00 committed by Andreas Kling
parent 1ca8782c99
commit a718c62c01
4 changed files with 62 additions and 6 deletions

View file

@ -55,6 +55,8 @@ private:
Element& associated_element() { return ref_count_target(); }
Element const& associated_element() const { return ref_count_target(); }
void remove_attribute_at_index(size_t attribute_index);
NonnullRefPtrVector<Attribute> m_attributes;
};