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

LibWeb: Implement StaticRange

This commit is contained in:
Luke Wilde 2022-01-30 23:37:42 +00:00 committed by Andreas Kling
parent a2acda5669
commit 3d44118595
6 changed files with 93 additions and 0 deletions

View file

@ -280,6 +280,8 @@
#include <LibWeb/Bindings/SelectionPrototype.h>
#include <LibWeb/Bindings/ShadowRootConstructor.h>
#include <LibWeb/Bindings/ShadowRootPrototype.h>
#include <LibWeb/Bindings/StaticRangeConstructor.h>
#include <LibWeb/Bindings/StaticRangePrototype.h>
#include <LibWeb/Bindings/StorageConstructor.h>
#include <LibWeb/Bindings/StoragePrototype.h>
#include <LibWeb/Bindings/StyleSheetConstructor.h>
@ -449,6 +451,7 @@
ADD_WINDOW_OBJECT_INTERFACE(Screen) \
ADD_WINDOW_OBJECT_INTERFACE(Selection) \
ADD_WINDOW_OBJECT_INTERFACE(ShadowRoot) \
ADD_WINDOW_OBJECT_INTERFACE(StaticRange) \
ADD_WINDOW_OBJECT_INTERFACE(Storage) \
ADD_WINDOW_OBJECT_INTERFACE(StyleSheet) \
ADD_WINDOW_OBJECT_INTERFACE(StyleSheetList) \