aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/flow.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/flow.rs')
-rw-r--r--components/layout/flow.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/components/layout/flow.rs b/components/layout/flow.rs
index 8c49eae6357..4792c8dfc4d 100644
--- a/components/layout/flow.rs
+++ b/components/layout/flow.rs
@@ -228,12 +228,6 @@ pub trait Flow: fmt::Show + ToString + Sync {
float::none
}
- /// Returns true if this float is a block formatting context and false otherwise. The default
- /// implementation returns false.
- fn is_block_formatting_context(&self, _only_impactable_by_floats: bool) -> bool {
- false
- }
-
fn compute_collapsible_block_start_margin(&mut self,
_layout_context: &mut LayoutContext,
_margin_collapse_info: &mut MarginCollapseInfo) {
@@ -837,7 +831,7 @@ impl BaseFlow {
}
impl<'a> ImmutableFlowUtils for &'a Flow + 'a {
- /// Returns true if this flow is a block or a float flow.
+ /// Returns true if this flow is a block flow.
fn is_block_like(self) -> bool {
match self.class() {
BlockFlowClass => true,