1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00

LibWeb: Make CSSRule and all its subclasses GC-allocated

This commit is contained in:
Andreas Kling 2022-08-07 15:46:44 +02:00
parent 5d6cb9cbdb
commit 12042f0757
Notes: sideshowbarker 2024-07-17 07:29:03 +09:00
39 changed files with 338 additions and 236 deletions

View file

@ -21,7 +21,7 @@
namespace Web::CSS {
struct MatchingRule {
RefPtr<CSSStyleRule> rule;
CSSStyleRule const* rule { nullptr };
size_t style_sheet_index { 0 };
size_t rule_index { 0 };
size_t selector_index { 0 };