mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Temporarily convert more cfg(debug_assertions) crashes to warnings (#30590)
This commit is contained in:
parent
aabae55407
commit
e95de5d858
2 changed files with 36 additions and 1 deletions
|
@ -1760,7 +1760,10 @@ impl Flow for InlineFlow {
|
|||
first_fragment.style.logical_border_width())
|
||||
.start;
|
||||
containing_block_positions.push(
|
||||
padding_box_origin.to_physical(self.base.writing_mode, container_size),
|
||||
// TODO(servo#30577) revert once underlying bug is fixed
|
||||
// padding_box_origin.to_physical(self.base.writing_mode, container_size),
|
||||
padding_box_origin
|
||||
.to_physical_or_warn(self.base.writing_mode, container_size),
|
||||
);
|
||||
},
|
||||
SpecificFragmentInfo::InlineBlock(_) if fragment.is_positioned() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue