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 -->
This commit is contained in:
bors-servo 2016-01-30 00:49:14 +05:30
commit 5e1f0495a9
17 changed files with 534 additions and 91 deletions

View file

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