mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 12:05:15 +00:00
LibWeb: Use bitfields for booleans in DOM::Element
This commit is contained in:
parent
f7a3f785a8
commit
51a5ebb91d
Notes:
github-actions[bot]
2025-02-06 19:08:16 +00:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/LadybirdBrowser/ladybird/commit/51a5ebb91dd Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3476 Reviewed-by: https://github.com/AtkinsSJ
1 changed files with 6 additions and 6 deletions
|
@ -524,13 +524,13 @@ private:
|
|||
|
||||
Array<CSSPixelPoint, 3> m_scroll_offset;
|
||||
|
||||
bool m_in_top_layer { false };
|
||||
bool m_rendered_in_top_layer { false };
|
||||
bool m_in_top_layer : 1 { false };
|
||||
bool m_rendered_in_top_layer : 1 { false };
|
||||
bool m_style_uses_css_custom_properties { false };
|
||||
bool m_affected_by_has_pseudo_class_in_subject_position { false };
|
||||
bool m_affected_by_sibling_combinator { false };
|
||||
bool m_affected_by_first_or_last_child_pseudo_class { false };
|
||||
bool m_affected_by_nth_child_pseudo_class { false };
|
||||
bool m_affected_by_has_pseudo_class_in_subject_position : 1 { false };
|
||||
bool m_affected_by_sibling_combinator : 1 { false };
|
||||
bool m_affected_by_first_or_last_child_pseudo_class : 1 { false };
|
||||
bool m_affected_by_nth_child_pseudo_class : 1 { false };
|
||||
|
||||
OwnPtr<CSS::CountersSet> m_counters_set;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue