diff options
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r-- | components/script/dom/node.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index e5d1367e993..33dadfe527b 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -144,6 +144,9 @@ bitflags! { #[doc = "Specifies whether this node is focusable and whether it is supposed \ to be reachable with using sequential focus navigation."] const SEQUENTIALLY_FOCUSABLE = 0x20, + + /// Whether any ancestor is a fragmentation container + const CAN_BE_FRAGMENTED = 0x40 } } |