diff options
Diffstat (limited to 'components/layout_2020/fragment_tree/base_fragment.rs')
-rw-r--r-- | components/layout_2020/fragment_tree/base_fragment.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/layout_2020/fragment_tree/base_fragment.rs b/components/layout_2020/fragment_tree/base_fragment.rs index 872d34cc6dd..3acee7a7cfe 100644 --- a/components/layout_2020/fragment_tree/base_fragment.rs +++ b/components/layout_2020/fragment_tree/base_fragment.rs @@ -91,6 +91,9 @@ bitflags! { /// Whether or not this Fragment was created to contain a replaced element or is /// a replaced element. const IS_REPLACED = 0b00000100; + /// Whether or not this Fragment was created to contain a list item marker + /// with a used value of `list-style-position: outside`. + const IS_OUTSIDE_LIST_ITEM_MARKER = 0b00001000; } } |