1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +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:
Andreas Kling 2022-09-05 11:41:26 +02:00
parent 1bd4ad8b6d
commit 8f110e0fb1
31 changed files with 32 additions and 35 deletions

View file

@ -1,7 +1,7 @@
#import <CSS/CSSRule.idl>
#import <CSS/CSSRuleList.idl>
[Exposed=Window, NoInstanceWrapper]
[Exposed=Window]
interface CSSGroupingRule : CSSRule {
[SameObject, ImplementedAs=css_rules_for_bindings] readonly attribute CSSRuleList cssRules;
unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);