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

LibWeb: Implement DOMTokenList for managing space-separated tokens lists

DOMTokenList is used as the return type of, e.g., the Element.classList
property.
This commit is contained in:
Timothy Flynn 2021-10-18 11:53:40 -04:00 committed by Andreas Kling
parent 4d8320a49a
commit d24ae8063b
6 changed files with 339 additions and 0 deletions

View file

@ -81,6 +81,7 @@ class DocumentLoadEventDelayer;
class DocumentType;
class DOMException;
class DOMImplementation;
class DOMTokenList;
class Element;
class Event;
class EventHandler;
@ -313,6 +314,7 @@ class DOMParserWrapper;
class DOMRectReadOnlyWrapper;
class DOMRectWrapper;
class DOMStringMapWrapper;
class DOMTokenListWrapper;
class ElementWrapper;
class EventListenerWrapper;
class EventTargetWrapper;