mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 15:18:06 +00:00
LibWeb: Abstract Range's members into AbstractRange
Range's member variables are stored in AbstractRange as per the spec, as they are also shared with StaticRange.
This commit is contained in:
parent
ed76b4238c
commit
a2acda5669
Notes:
sideshowbarker
2024-07-17 21:11:12 +09:00
Author: https://github.com/Lubrsi
Commit: a2acda5669
Pull-request: https://github.com/SerenityOS/serenity/pull/12774
8 changed files with 86 additions and 42 deletions
|
@ -12,6 +12,8 @@
|
|||
#include <LibWeb/Bindings/AbortControllerPrototype.h>
|
||||
#include <LibWeb/Bindings/AbortSignalConstructor.h>
|
||||
#include <LibWeb/Bindings/AbortSignalPrototype.h>
|
||||
#include <LibWeb/Bindings/AbstractRangeConstructor.h>
|
||||
#include <LibWeb/Bindings/AbstractRangePrototype.h>
|
||||
#include <LibWeb/Bindings/AudioConstructor.h>
|
||||
#include <LibWeb/Bindings/CSSRuleConstructor.h>
|
||||
#include <LibWeb/Bindings/CSSRuleListConstructor.h>
|
||||
|
@ -326,6 +328,7 @@
|
|||
auto& vm = this->vm(); \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(AbortController) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(AbortSignal) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(AbstractRange) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Crypto) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(CSSRule) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(CSSRuleList) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue