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
commit a718c62c01
Notes: sideshowbarker 2024-07-18 08:59:31 +09:00
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;
};