mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Rustfmt recent changes.
This commit is contained in:
parent
e885ccb7ae
commit
ef16c5844f
28 changed files with 111 additions and 63 deletions
|
@ -2527,10 +2527,20 @@ impl Fragment {
|
|||
{
|
||||
continue;
|
||||
}
|
||||
if !inline_context_node.style.logical_margin().inline_end.is_definitely_zero() {
|
||||
if !inline_context_node
|
||||
.style
|
||||
.logical_margin()
|
||||
.inline_end
|
||||
.is_definitely_zero()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if !inline_context_node.style.logical_padding().inline_end.is_definitely_zero() {
|
||||
if !inline_context_node
|
||||
.style
|
||||
.logical_padding()
|
||||
.inline_end
|
||||
.is_definitely_zero()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if inline_context_node.style.logical_border_width().inline_end != Au(0) {
|
||||
|
@ -2549,10 +2559,20 @@ impl Fragment {
|
|||
{
|
||||
continue;
|
||||
}
|
||||
if !inline_context_node.style.logical_margin().inline_start.is_definitely_zero() {
|
||||
if !inline_context_node
|
||||
.style
|
||||
.logical_margin()
|
||||
.inline_start
|
||||
.is_definitely_zero()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if !inline_context_node.style.logical_padding().inline_start.is_definitely_zero() {
|
||||
if !inline_context_node
|
||||
.style
|
||||
.logical_padding()
|
||||
.inline_start
|
||||
.is_definitely_zero()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if inline_context_node
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue