Get rid of the ForNewlyBoundElement mode.

MozReview-Commit-ID: 1IRn2iaPnVc
This commit is contained in:
Bobby Holley 2017-07-26 10:43:48 -07:00
parent 543bbb7b9c
commit 68c8808711
2 changed files with 12 additions and 11 deletions

View file

@ -20,8 +20,6 @@ bitflags! {
const UnstyledChildrenOnly = 1 << 2,
/// FIXME(bholley): This will go away.
const ForReconstruct = 1 << 3,
/// FIXME(bholley): This will go away.
const ForNewlyBoundElement = 1 << 4,
}
}
@ -49,7 +47,6 @@ pub fn assert_traversal_flags_match() {
ServoTraversalFlags_ForCSSRuleChanges => ForCSSRuleChanges,
ServoTraversalFlags_UnstyledChildrenOnly => UnstyledChildrenOnly,
ServoTraversalFlags_ForReconstruct => ForReconstruct,
ServoTraversalFlags_ForNewlyBoundElement => ForNewlyBoundElement,
}
}