mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Fix servo build.
This commit is contained in:
parent
edf4b0129b
commit
c6dfe53483
1 changed files with 5 additions and 2 deletions
|
@ -1499,8 +1499,11 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
|
|
||||||
let outline_style = match style.get_outline().outline_style {
|
let outline_style = match style.get_outline().outline_style {
|
||||||
OutlineStyle::Auto => BorderStyle::Solid,
|
OutlineStyle::Auto => BorderStyle::Solid,
|
||||||
OutlineStyle::Other(BorderStyle::None) => return,
|
// FIXME(emilio): I don't think this border-style check is
|
||||||
OutlineStyle::Other(border_style) => border_style,
|
// necessary, since border-style: none implies an outline-width of
|
||||||
|
// zero at computed value time.
|
||||||
|
OutlineStyle::BorderStyle(BorderStyle::None) => return,
|
||||||
|
OutlineStyle::BorderStyle(s) => s,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Outlines are not accounted for in the dimensions of the border box, so adjust the
|
// Outlines are not accounted for in the dimensions of the border box, so adjust the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue