aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/node.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-09-18 15:27:08 +0200
committerSimon Sapin <simon.sapin@exyr.org>2016-01-27 17:33:12 +0100
commitda2b4ab3812605580187373d5fb1ff3c8de78fb4 (patch)
treedd405765309ed46b87917150896c4461cad7fef2 /components/script/dom/node.rs
parent357463864b573b989486616be92f6b2bd587349f (diff)
downloadservo-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.rs3
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
}
}