diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-30 00:49:14 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-30 00:49:14 +0530 |
commit | 5e1f0495a922c5dddbc120f17ba5c933973537ed (patch) | |
tree | 7929d7ada22418c5497974f37fc55f1445c50924 /components/script/dom/node.rs | |
parent | dc223eb4c377b34480d9a896dbc01891f1428f5e (diff) | |
parent | 47d918ca35f8ae8ce4d24430e3520a06272f35f9 (diff) | |
download | servo-5e1f0495a922c5dddbc120f17ba5c933973537ed.tar.gz servo-5e1f0495a922c5dddbc120f17ba5c933973537ed.zip |
Auto merge of #9170 - SimonSapin:multicol2, r=mbrubeck
Add CSS Multicolumn support with block fragmentation

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.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 } } |