LibWeb: Make CSSRuleList GC-allocated

This commit is contained in:
Andreas Kling 2022-08-07 13:51:40 +02:00
commit 5d6cb9cbdb
Notes: sideshowbarker 2024-07-17 07:29:07 +09:00
11 changed files with 50 additions and 29 deletions

View file

@ -84,6 +84,9 @@ static bool impl_is_wrapper(Type const& type)
if (type.name == "StyleSheetList"sv)
return true;
if (type.name == "CSSRuleList"sv)
return true;
return false;
}