LibWeb+WebContent: Include rule count in listed CSS style sheets

This commit is contained in:
Timothy Flynn 2025-03-12 14:34:23 -04:00 committed by Tim Flynn
commit cf601a49bb
Notes: github-actions[bot] 2025-03-13 20:57:30 +00:00
3 changed files with 12 additions and 3 deletions

View file

@ -19,9 +19,12 @@ struct StyleSheetIdentifier {
ImportRule,
UserAgent,
UserStyle,
} type;
};
Type type;
Optional<UniqueNodeID> dom_element_unique_id {};
Optional<String> url {};
size_t rule_count { 0 };
};
StringView style_sheet_identifier_type_to_string(StyleSheetIdentifier::Type);