diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2015-09-18 15:27:08 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-01-27 17:33:12 +0100 |
commit | da2b4ab3812605580187373d5fb1ff3c8de78fb4 (patch) | |
tree | dd405765309ed46b87917150896c4461cad7fef2 /components/script/dom/node.rs | |
parent | 357463864b573b989486616be92f6b2bd587349f (diff) | |
download | servo-da2b4ab3812605580187373d5fb1ff3c8de78fb4.tar.gz servo-da2b4ab3812605580187373d5fb1ff3c8de78fb4.zip |
Disable incremental reflow for multicol and their descendants.
Fragmentation with dynamic updates is hard.
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..3f8bcefeef8 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 IN_FRAGMENTATION_CONTAINER = 0x40 } } |