aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/node.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-01-30 00:49:14 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-01-30 00:49:14 +0530
commit5e1f0495a922c5dddbc120f17ba5c933973537ed (patch)
tree7929d7ada22418c5497974f37fc55f1445c50924 /components/script/dom/node.rs
parentdc223eb4c377b34480d9a896dbc01891f1428f5e (diff)
parent47d918ca35f8ae8ce4d24430e3520a06272f35f9 (diff)
downloadservo-5e1f0495a922c5dddbc120f17ba5c933973537ed.tar.gz
servo-5e1f0495a922c5dddbc120f17ba5c933973537ed.zip
Auto merge of #9170 - SimonSapin:multicol2, r=mbrubeck
Add CSS Multicolumn support with block fragmentation ![a](https://cloud.githubusercontent.com/assets/291359/12147538/bfb198ac-b499-11e5-9936-c54c93d0b1ed.png) Includes/supersedes #8763. r? @mbrubeck <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9170) <!-- Reviewable:end -->
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..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
}
}