mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Make SVGLength and SVGAnimatedLength GC-allocated
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 08:59:18 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/3905d54a9c Pull-request: https://github.com/SerenityOS/serenity/pull/14816 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/linusg ✅
@@ -156,63 +156,63 @@ Gfx::FloatPoint SVGRectElement::calculate_used_corner_radius_values()
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/SVG11/shapes.html#RectElementXAttribute
|
||||
NonnullRefPtr<SVGAnimatedLength> SVGRectElement::x() const
|
||||
JS::NonnullGCPtr<SVGAnimatedLength> SVGRectElement::x() const
|
||||
{
|
||||
// FIXME: Populate the unit type when it is parsed (0 here is "unknown").
|
||||
// FIXME: Create a proper animated value when animations are supported.
|
||||
auto base_length = SVGLength::create(0, m_x.value_or(0));
|
||||
auto anim_length = SVGLength::create(0, m_x.value_or(0));
|
||||
return SVGAnimatedLength::create(move(base_length), move(anim_length));
|
||||
auto base_length = SVGLength::create(window(), 0, m_x.value_or(0));
|
||||
auto anim_length = SVGLength::create(window(), 0, m_x.value_or(0));
|
||||
return SVGAnimatedLength::create(window(), move(base_length), move(anim_length));
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/SVG11/shapes.html#RectElementYAttribute
|
||||
NonnullRefPtr<SVGAnimatedLength> SVGRectElement::y() const
|
||||
JS::NonnullGCPtr<SVGAnimatedLength> SVGRectElement::y() const
|
||||
{
|
||||
// FIXME: Populate the unit type when it is parsed (0 here is "unknown").
|
||||
// FIXME: Create a proper animated value when animations are supported.
|
||||
auto base_length = SVGLength::create(0, m_y.value_or(0));
|
||||
auto anim_length = SVGLength::create(0, m_y.value_or(0));
|
||||
return SVGAnimatedLength::create(move(base_length), move(anim_length));
|
||||
auto base_length = SVGLength::create(window(), 0, m_y.value_or(0));
|
||||
auto anim_length = SVGLength::create(window(), 0, m_y.value_or(0));
|
||||
return SVGAnimatedLength::create(window(), move(base_length), move(anim_length));
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/SVG11/shapes.html#RectElementWidthAttribute
|
||||
NonnullRefPtr<SVGAnimatedLength> SVGRectElement::width() const
|
||||
JS::NonnullGCPtr<SVGAnimatedLength> SVGRectElement::width() const
|
||||
{
|
||||
// FIXME: Populate the unit type when it is parsed (0 here is "unknown").
|
||||
// FIXME: Create a proper animated value when animations are supported.
|
||||
auto base_length = SVGLength::create(0, m_width.value_or(0));
|
||||
auto anim_length = SVGLength::create(0, m_width.value_or(0));
|
||||
return SVGAnimatedLength::create(move(base_length), move(anim_length));
|
||||
auto base_length = SVGLength::create(window(), 0, m_width.value_or(0));
|
||||
auto anim_length = SVGLength::create(window(), 0, m_width.value_or(0));
|
||||
return SVGAnimatedLength::create(window(), move(base_length), move(anim_length));
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/SVG11/shapes.html#RectElementHeightAttribute
|
||||
NonnullRefPtr<SVGAnimatedLength> SVGRectElement::height() const
|
||||
JS::NonnullGCPtr<SVGAnimatedLength> SVGRectElement::height() const
|
||||
{
|
||||
// FIXME: Populate the unit type when it is parsed (0 here is "unknown").
|
||||
// FIXME: Create a proper animated value when animations are supported.
|
||||
auto base_length = SVGLength::create(0, m_height.value_or(0));
|
||||
auto anim_length = SVGLength::create(0, m_height.value_or(0));
|
||||
return SVGAnimatedLength::create(move(base_length), move(anim_length));
|
||||
auto base_length = SVGLength::create(window(), 0, m_height.value_or(0));
|
||||
auto anim_length = SVGLength::create(window(), 0, m_height.value_or(0));
|
||||
return SVGAnimatedLength::create(window(), move(base_length), move(anim_length));
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/SVG11/shapes.html#RectElementRXAttribute
|
||||
NonnullRefPtr<SVGAnimatedLength> SVGRectElement::rx() const
|
||||
JS::NonnullGCPtr<SVGAnimatedLength> SVGRectElement::rx() const
|
||||
{
|
||||
// FIXME: Populate the unit type when it is parsed (0 here is "unknown").
|
||||
// FIXME: Create a proper animated value when animations are supported.
|
||||
auto base_length = SVGLength::create(0, m_radius_x.value_or(0));
|
||||
auto anim_length = SVGLength::create(0, m_radius_x.value_or(0));
|
||||
return SVGAnimatedLength::create(move(base_length), move(anim_length));
|
||||
auto base_length = SVGLength::create(window(), 0, m_radius_x.value_or(0));
|
||||
auto anim_length = SVGLength::create(window(), 0, m_radius_x.value_or(0));
|
||||
return SVGAnimatedLength::create(window(), move(base_length), move(anim_length));
|
||||
}
|
||||
|
||||
// https://www.w3.org/TR/SVG11/shapes.html#RectElementRYAttribute
|
||||
NonnullRefPtr<SVGAnimatedLength> SVGRectElement::ry() const
|
||||
JS::NonnullGCPtr<SVGAnimatedLength> SVGRectElement::ry() const
|
||||
{
|
||||
// FIXME: Populate the unit type when it is parsed (0 here is "unknown").
|
||||
// FIXME: Create a proper animated value when animations are supported.
|
||||
auto base_length = SVGLength::create(0, m_radius_y.value_or(0));
|
||||
auto anim_length = SVGLength::create(0, m_radius_y.value_or(0));
|
||||
return SVGAnimatedLength::create(move(base_length), move(anim_length));
|
||||
auto base_length = SVGLength::create(window(), 0, m_radius_y.value_or(0));
|
||||
auto anim_length = SVGLength::create(window(), 0, m_radius_y.value_or(0));
|
||||
return SVGAnimatedLength::create(window(), move(base_length), move(anim_length));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user