mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Bug 1325734 - Remove Servo Layout's dependency on the initial-ness of the style. r=emilio
This commit is contained in:
parent
9482467add
commit
962a4a79bb
6 changed files with 59 additions and 13 deletions
|
@ -46,6 +46,8 @@ impl PersistentLayoutData {
|
|||
bitflags! {
|
||||
pub flags LayoutDataFlags: u8 {
|
||||
#[doc = "Whether a flow has been newly constructed."]
|
||||
const HAS_NEWLY_CONSTRUCTED_FLOW = 0x01
|
||||
const HAS_NEWLY_CONSTRUCTED_FLOW = 0x01,
|
||||
#[doc = "Whether this node has been traversed by layout."]
|
||||
const HAS_BEEN_TRAVERSED = 0x02,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue