1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

LibWeb: Add support for IDL legacy platform objects

A legacy platform object is a non-global platform object that
implements a special operation. A special operation is a getter, setter
and/or deleter. This is particularly used for old collection types,
such as HTMLCollection, NodeList, etc.

This will be used to make these spec-compliant and remove their custom
wrappers. Additionally, it will be used to implement collections that
we don't have yet, such as DOMStringMap.
This commit is contained in:
Luke Wilde 2021-09-26 14:53:28 +01:00 committed by Andreas Kling
parent e06762f312
commit 41ae0c0216
4 changed files with 1014 additions and 5 deletions

View file

@ -4,6 +4,7 @@ set(SOURCES
Bindings/EventTargetWrapperFactory.cpp
Bindings/EventWrapperFactory.cpp
Bindings/HTMLCollectionWrapperCustom.cpp
Bindings/IDLAbstractOperations.cpp
Bindings/ImageConstructor.cpp
Bindings/LocationObject.cpp
Bindings/MainThreadVM.cpp