mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-18 08:20:44 +00:00
LibGC+LibWeb+LibJS: Remove workaround for Swift boolean bitfield issue
We're using a main snapshot everywhere, so we can yeet the workaround.
This commit is contained in:
parent
e73438e82c
commit
8fd81c3338
Notes:
github-actions[bot]
2025-04-04 19:07:56 +00:00
Author: https://github.com/ADKaster
Commit: 8fd81c3338
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4223
9 changed files with 39 additions and 51 deletions
|
@ -553,16 +553,16 @@ private:
|
|||
|
||||
Array<CSSPixelPoint, 3> m_scroll_offset;
|
||||
|
||||
bool m_in_top_layer BOOL_BITFIELD { false };
|
||||
bool m_rendered_in_top_layer BOOL_BITFIELD { false };
|
||||
bool m_style_uses_css_custom_properties BOOL_BITFIELD { false };
|
||||
bool m_affected_by_has_pseudo_class_in_subject_position BOOL_BITFIELD { false };
|
||||
bool m_affected_by_has_pseudo_class_in_non_subject_position BOOL_BITFIELD { false };
|
||||
bool m_affected_by_direct_sibling_combinator BOOL_BITFIELD { false };
|
||||
bool m_affected_by_indirect_sibling_combinator BOOL_BITFIELD { false };
|
||||
bool m_affected_by_first_or_last_child_pseudo_class BOOL_BITFIELD { false };
|
||||
bool m_affected_by_nth_child_pseudo_class BOOL_BITFIELD { false };
|
||||
bool m_affected_by_has_pseudo_class_with_relative_selector_that_has_sibling_combinator BOOL_BITFIELD { false };
|
||||
bool m_in_top_layer : 1 { false };
|
||||
bool m_rendered_in_top_layer : 1 { false };
|
||||
bool m_style_uses_css_custom_properties : 1 { false };
|
||||
bool m_affected_by_has_pseudo_class_in_subject_position : 1 { false };
|
||||
bool m_affected_by_has_pseudo_class_in_non_subject_position : 1 { false };
|
||||
bool m_affected_by_direct_sibling_combinator : 1 { false };
|
||||
bool m_affected_by_indirect_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 };
|
||||
bool m_affected_by_has_pseudo_class_with_relative_selector_that_has_sibling_combinator : 1 { false };
|
||||
|
||||
size_t m_sibling_invalidation_distance { 0 };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue