mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +00:00
LibWeb: Use CSSPixelFraction
to represent aspect ratios
This allows us to retain perfect precision for aspect ratios derived from either the intrinsic sizes of replaced elements, or the `aspect-ratio` CSS property.
This commit is contained in:
parent
4fb209d25f
commit
34c5043cbe
Notes:
sideshowbarker
2024-07-16 20:31:50 +09:00
Author: https://github.com/Zaggy1024
Commit: 34c5043cbe
Pull-request: https://github.com/SerenityOS/serenity/pull/20943
22 changed files with 57 additions and 55 deletions
|
@ -37,11 +37,11 @@ HTML::HTMLVideoElement const& VideoBox::dom_node() const
|
|||
|
||||
void VideoBox::prepare_for_replaced_layout()
|
||||
{
|
||||
auto width = static_cast<float>(dom_node().video_width());
|
||||
set_natural_width(CSSPixels(width));
|
||||
CSSPixels width = dom_node().video_width();
|
||||
set_natural_width(width);
|
||||
|
||||
auto height = static_cast<float>(dom_node().video_height());
|
||||
set_natural_height(CSSPixels(height));
|
||||
CSSPixels height = dom_node().video_height();
|
||||
set_natural_height(height);
|
||||
|
||||
if (width != 0 && height != 0)
|
||||
set_natural_aspect_ratio(width / height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue