mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 22:42:08 +00:00
LibWeb: Add missing visit in CSSStyleSheet::visit_edges()
Gotta visit m_default_namespace_rule.
This commit is contained in:
parent
d0fd925126
commit
37a618b7ad
1 changed files with 1 additions and 0 deletions
|
@ -51,6 +51,7 @@ void CSSStyleSheet::visit_edges(Cell::Visitor& visitor)
|
|||
visitor.visit(m_style_sheet_list.ptr());
|
||||
visitor.visit(m_rules);
|
||||
visitor.visit(m_owner_css_rule);
|
||||
visitor.visit(m_default_namespace_rule);
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/cssom/#dom-cssstylesheet-insertrule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue