mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
LibWeb: Use rect value in CSS clip property
When a rect value is passed to the clip property via CSS, keep it in ComputedValues so that at a later stage can make use of it.
This commit is contained in:
parent
b4dd477644
commit
8163ee1500
9 changed files with 84 additions and 0 deletions
29
Userland/Libraries/LibWeb/CSS/Clip.cpp
Normal file
29
Userland/Libraries/LibWeb/CSS/Clip.cpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* Copyright (c) 2022, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include "Clip.h"
|
||||
#include <LibWeb/CSS/StyleValue.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
||||
Clip::Clip(Type type, EdgeRect edge_rect)
|
||||
: m_type(type)
|
||||
, m_edge_rect(edge_rect)
|
||||
{
|
||||
}
|
||||
|
||||
Clip::Clip(EdgeRect edge_rect)
|
||||
: m_type(Type::Rect)
|
||||
, m_edge_rect(edge_rect)
|
||||
{
|
||||
}
|
||||
|
||||
Clip Clip::make_auto()
|
||||
{
|
||||
return Clip(Type::Auto, EdgeRect { Length::make_auto(), Length::make_auto(), Length::make_auto(), Length::make_auto() });
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue