mirror of
https://github.com/servo/servo.git
synced 2025-08-17 19:35:33 +01:00
Pass SharedStyleContext to explicit_block_containing_size.
This commit is contained in:
parent
6f4b8f2505
commit
f20ea08a1b
3 changed files with 13 additions and 11 deletions
|
@ -23,6 +23,7 @@ use inline::InlineMetrics;
|
|||
use script_layout_interface::restyle_damage::RESOLVE_GENERATED_CONTENT;
|
||||
use std::sync::Arc;
|
||||
use style::computed_values::{list_style_type, position};
|
||||
use style::context::StyleContext;
|
||||
use style::logical_geometry::LogicalSize;
|
||||
use style::properties::{ComputedValues, ServoComputedValues};
|
||||
use text;
|
||||
|
@ -88,7 +89,7 @@ impl Flow for ListItemFlow {
|
|||
|
||||
for marker in self.marker_fragments.iter_mut().rev() {
|
||||
let containing_block_inline_size = self.block_flow.base.block_container_inline_size;
|
||||
let container_block_size = self.block_flow.explicit_block_containing_size(layout_context);
|
||||
let container_block_size = self.block_flow.explicit_block_containing_size(layout_context.shared_context());
|
||||
marker.assign_replaced_inline_size_if_necessary(containing_block_inline_size, container_block_size);
|
||||
|
||||
// Do this now. There's no need to do this in bubble-widths, since markers do not
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue