mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-16 04:59:23 +00:00
LibWeb/CSS: Inline EasingStyleValue::CubicBezier::operator==()
For whatever reason, this method in particular ends up failing to link into WebContent with a subsequent change. It's small and simple, so just inline it.
This commit is contained in:
parent
3d141ac6a1
commit
aa8bf6372f
Notes:
github-actions[bot]
2025-09-26 20:33:19 +00:00
Author: https://github.com/AtkinsSJ
Commit: aa8bf6372f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6311
2 changed files with 4 additions and 6 deletions
|
@ -60,11 +60,6 @@ EasingStyleValue::Steps EasingStyleValue::Steps::step_end()
|
|||
return steps;
|
||||
}
|
||||
|
||||
bool EasingStyleValue::CubicBezier::operator==(Web::CSS::EasingStyleValue::CubicBezier const& other) const
|
||||
{
|
||||
return x1 == other.x1 && y1 == other.y1 && x2 == other.x2 && y2 == other.y2;
|
||||
}
|
||||
|
||||
// https://drafts.csswg.org/css-easing/#linear-canonicalization
|
||||
EasingStyleValue::Linear::Linear(Vector<EasingStyleValue::Linear::Stop> stops)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue