mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +00:00
LibWeb: Convert BorderData::width to CSSPixels
The `clip_shrink` optimization in `paint_background()` now also correctly uses DevicePixels, instead of reducing a DevicePixel rect by a CSSPixels amount.
This commit is contained in:
parent
072ab94889
commit
5ee1b7db7c
7 changed files with 20 additions and 20 deletions
|
@ -155,7 +155,7 @@ struct BorderData {
|
|||
public:
|
||||
Color color { Color::Transparent };
|
||||
CSS::LineStyle line_style { CSS::LineStyle::None };
|
||||
double width { 0 };
|
||||
CSSPixels width { 0 };
|
||||
|
||||
bool operator==(BorderData const&) const = default;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue