1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +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

@ -2869,6 +2869,7 @@ void generate_prototype_implementation(IDL::Interface const& interface)
#include <LibWeb/Bindings/DOMImplementationWrapper.h>
#include <LibWeb/Bindings/DOMRectWrapper.h>
#include <LibWeb/Bindings/DOMStringMapWrapper.h>
#include <LibWeb/Bindings/DOMTokenListWrapper.h>
#include <LibWeb/Bindings/DocumentFragmentWrapper.h>
#include <LibWeb/Bindings/DocumentTypeWrapper.h>
#include <LibWeb/Bindings/DocumentWrapper.h>