1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:37:44 +00:00

LibWeb: Resolve circular IDL imports

These circular imports led to the generator silently failing to
generate the required methods/properties.
This commit is contained in:
MacDue 2022-07-30 11:31:17 +01:00 committed by Linus Groh
parent 8da0c36212
commit d4b2eb22e1
8 changed files with 11 additions and 14 deletions

View file

@ -53,3 +53,7 @@ interface Element : Node {
readonly attribute long clientWidth;
readonly attribute long clientHeight;
};
Element includes ParentNode;
Element includes ChildNode;
Element includes InnerHTML;