mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:17:35 +00:00
LibWeb: Remove the NoInstanceWrapper extended IDL attribute
No interfaces require wrappers anymore, so we can just make this the default mode.
This commit is contained in:
parent
1bd4ad8b6d
commit
8f110e0fb1
31 changed files with 32 additions and 35 deletions
|
@ -1,4 +1,4 @@
|
|||
[Exposed=Window, NoInstanceWrapper]
|
||||
[Exposed=Window]
|
||||
interface AbstractRange {
|
||||
readonly attribute Node startContainer;
|
||||
readonly attribute unsigned long startOffset;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import <DOM/Event.idl>
|
||||
|
||||
[Exposed=(Window,Worker), NoInstanceWrapper]
|
||||
[Exposed=(Window,Worker)]
|
||||
interface CustomEvent : Event {
|
||||
constructor(DOMString type, optional CustomEventInit eventInitDict = {});
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[NoInstanceWrapper]
|
||||
[]
|
||||
interface DOMTokenList {
|
||||
readonly attribute unsigned long length;
|
||||
getter DOMString? item(unsigned long index);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
|
||||
[NoInstanceWrapper]
|
||||
[]
|
||||
interface Event {
|
||||
|
||||
constructor(DOMString type, optional EventInit eventInitDict = {});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import <DOM/Attribute.idl>
|
||||
|
||||
[Exposed=Window, LegacyUnenumerableNamedProperties, NoInstanceWrapper]
|
||||
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
||||
interface NamedNodeMap {
|
||||
readonly attribute unsigned long length;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <DOM/Node.idl>
|
||||
#import <DOM/NodeFilter.idl>
|
||||
|
||||
[Exposed=Window, NoInstanceWrapper]
|
||||
[Exposed=Window]
|
||||
interface NodeIterator {
|
||||
|
||||
[SameObject] readonly attribute Node root;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <DOM/Node.idl>
|
||||
#import <DOM/AbstractRange.idl>
|
||||
|
||||
[Exposed=Window, NoInstanceWrapper]
|
||||
[Exposed=Window]
|
||||
interface Range : AbstractRange {
|
||||
|
||||
constructor();
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <DOM/Node.idl>
|
||||
#import <DOM/AbstractRange.idl>
|
||||
|
||||
[Exposed=Window, NoInstanceWrapper]
|
||||
[Exposed=Window]
|
||||
interface StaticRange : AbstractRange {
|
||||
constructor(StaticRangeInit init);
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <DOM/Node.idl>
|
||||
#import <DOM/NodeFilter.idl>
|
||||
|
||||
[Exposed=Window, NoInstanceWrapper]
|
||||
[Exposed=Window]
|
||||
interface TreeWalker {
|
||||
|
||||
[SameObject] readonly attribute Node root;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue