2020-07-19 23:01:53 -07:00
/*
* Copyright ( c ) 2020 , Matthew Olsson < matthewcolsson @ gmail . com >
2024-10-04 13:19:50 +02:00
* Copyright ( c ) 2022 , Andreas Kling < andreas @ ladybird . org >
2020-07-19 23:01:53 -07:00
*
2021-04-22 01:24:48 -07:00
* SPDX - License - Identifier : BSD - 2 - Clause
2020-07-19 23:01:53 -07:00
*/
2024-04-27 12:09:58 +12:00
# include <LibWeb/Bindings/SVGSVGElementPrototype.h>
2022-02-15 16:42:00 +00:00
# include <LibWeb/CSS/Parser/Parser.h>
2021-09-24 13:49:57 +02:00
# include <LibWeb/CSS/StyleComputer.h>
2023-06-20 09:39:14 +02:00
# include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
2023-03-24 17:28:43 +00:00
# include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
2020-07-19 23:01:53 -07:00
# include <LibWeb/DOM/Document.h>
# include <LibWeb/DOM/Event.h>
2024-04-01 00:51:24 +01:00
# include <LibWeb/DOM/StaticNodeList.h>
2022-03-26 14:29:52 +01:00
# include <LibWeb/HTML/Parser/HTMLParser.h>
2020-11-22 15:53:01 +01:00
# include <LibWeb/Layout/SVGSVGBox.h>
2021-09-15 01:12:41 +02:00
# include <LibWeb/SVG/AttributeNames.h>
2024-01-24 22:54:16 +01:00
# include <LibWeb/SVG/SVGAnimatedRect.h>
2020-07-23 09:44:42 -07:00
# include <LibWeb/SVG/SVGSVGElement.h>
2024-04-01 00:51:24 +01:00
# include <LibWeb/Selection/Selection.h>
2020-07-19 23:01:53 -07:00
2020-07-23 09:44:42 -07:00
namespace Web : : SVG {
2020-07-19 23:01:53 -07:00
2024-11-15 04:01:23 +13:00
GC_DEFINE_ALLOCATOR ( SVGSVGElement ) ;
2023-11-19 19:47:52 +01:00
2022-02-18 21:00:52 +01:00
SVGSVGElement : : SVGSVGElement ( DOM : : Document & document , DOM : : QualifiedName qualified_name )
2020-10-10 02:48:05 +01:00
: SVGGraphicsElement ( document , qualified_name )
2020-07-19 23:01:53 -07:00
{
2023-01-10 06:28:20 -05:00
}
2023-08-07 08:41:28 +02:00
void SVGSVGElement : : initialize ( JS : : Realm & realm )
2023-01-10 06:28:20 -05:00
{
2024-03-16 13:13:08 +01:00
WEB_SET_PROTOTYPE_FOR_INTERFACE ( SVGSVGElement ) ;
2025-04-20 16:22:57 +02:00
Base : : initialize ( realm ) ;
2024-11-14 05:50:17 +13:00
m_view_box_for_bindings = realm . create < SVGAnimatedRect > ( realm ) ;
2024-01-24 22:54:16 +01:00
}
void SVGSVGElement : : visit_edges ( Visitor & visitor )
{
Base : : visit_edges ( visitor ) ;
visitor . visit ( m_view_box_for_bindings ) ;
2020-07-19 23:01:53 -07:00
}
2024-12-20 16:35:12 +01:00
GC : : Ptr < Layout : : Node > SVGSVGElement : : create_layout_node ( GC : : Ref < CSS : : ComputedProperties > style )
2020-07-19 23:01:53 -07:00
{
2024-11-14 06:13:46 +13:00
return heap ( ) . allocate < Layout : : SVGSVGBox > ( document ( ) , * this , move ( style ) ) ;
2020-07-19 23:01:53 -07:00
}
2025-04-15 15:18:27 -06:00
RefPtr < CSS : : CSSStyleValue const > SVGSVGElement : : width_style_value_from_attribute ( ) const
2024-08-22 13:32:25 +02:00
{
2025-02-05 12:08:27 +00:00
auto parsing_context = CSS : : Parser : : ParsingParams { document ( ) , CSS : : Parser : : ParsingMode : : SVGPresentationAttribute } ;
2024-08-22 13:32:25 +02:00
auto width_attribute = attribute ( SVG : : AttributeNames : : width ) ;
if ( auto width_value = parse_css_value ( parsing_context , width_attribute . value_or ( String { } ) , CSS : : PropertyID : : Width ) ) {
return width_value . release_nonnull ( ) ;
}
if ( width_attribute = = " " ) {
// If the `width` attribute is an empty string, it defaults to 100%.
// This matches WebKit and Blink, but not Firefox. The spec is unclear.
// FIXME: Figure out what to do here.
return CSS : : PercentageStyleValue : : create ( CSS : : Percentage { 100 } ) ;
}
return nullptr ;
}
2025-04-15 15:18:27 -06:00
RefPtr < CSS : : CSSStyleValue const > SVGSVGElement : : height_style_value_from_attribute ( ) const
2024-08-22 13:32:25 +02:00
{
2025-02-05 12:08:27 +00:00
auto parsing_context = CSS : : Parser : : ParsingParams { document ( ) , CSS : : Parser : : ParsingMode : : SVGPresentationAttribute } ;
2024-08-22 13:32:25 +02:00
auto height_attribute = attribute ( SVG : : AttributeNames : : height ) ;
if ( auto height_value = parse_css_value ( parsing_context , height_attribute . value_or ( String { } ) , CSS : : PropertyID : : Height ) ) {
return height_value . release_nonnull ( ) ;
}
if ( height_attribute = = " " ) {
// If the `height` attribute is an empty string, it defaults to 100%.
// This matches WebKit and Blink, but not Firefox. The spec is unclear.
// FIXME: Figure out what to do here.
return CSS : : PercentageStyleValue : : create ( CSS : : Percentage { 100 } ) ;
}
return nullptr ;
}
2024-12-23 17:51:10 +01:00
bool SVGSVGElement : : is_presentational_hint ( FlyString const & name ) const
{
if ( Base : : is_presentational_hint ( name ) )
return true ;
return first_is_one_of ( name ,
SVG : : AttributeNames : : x ,
SVG : : AttributeNames : : y ,
SVG : : AttributeNames : : width ,
SVG : : AttributeNames : : height ,
SVG : : AttributeNames : : viewBox ,
SVG : : AttributeNames : : preserveAspectRatio ) ;
}
LibWeb: Split StyleComputer work into two phases with separate outputs
Before this change, StyleComputer would essentially take a DOM element,
find all the CSS rules that apply to it, and resolve the computed value
for each CSS property for that element.
This worked great, but it meant we had to do all the work of selector
matching and cascading every time.
To enable new optimizations, this change introduces a break in the
middle of this process where we've produced a "CascadedProperties".
This object contains the result of the cascade, before we've begun
turning cascaded values into computed values.
The cascaded properties are now stored with each element, which will
later allow us to do partial updates without re-running the full
StyleComputer machine. This will be particularly valuable for
re-implementing CSS inheritance, which is extremely heavy today.
Note that CSS animations and CSS transitions operate entirely on the
computed values, even though the cascade order would have you believe
they happen earlier. I'm not confident we have the right architecture
for this, but that's a separate issue.
2024-12-12 10:06:29 +01:00
void SVGSVGElement : : apply_presentational_hints ( GC : : Ref < CSS : : CascadedProperties > cascaded_properties ) const
2020-07-19 23:01:53 -07:00
{
LibWeb: Split StyleComputer work into two phases with separate outputs
Before this change, StyleComputer would essentially take a DOM element,
find all the CSS rules that apply to it, and resolve the computed value
for each CSS property for that element.
This worked great, but it meant we had to do all the work of selector
matching and cascading every time.
To enable new optimizations, this change introduces a break in the
middle of this process where we've produced a "CascadedProperties".
This object contains the result of the cascade, before we've begun
turning cascaded values into computed values.
The cascaded properties are now stored with each element, which will
later allow us to do partial updates without re-running the full
StyleComputer machine. This will be particularly valuable for
re-implementing CSS inheritance, which is extremely heavy today.
Note that CSS animations and CSS transitions operate entirely on the
computed values, even though the cascade order would have you believe
they happen earlier. I'm not confident we have the right architecture
for this, but that's a separate issue.
2024-12-12 10:06:29 +01:00
Base : : apply_presentational_hints ( cascaded_properties ) ;
2025-02-05 12:08:27 +00:00
auto parsing_context = CSS : : Parser : : ParsingParams { document ( ) , CSS : : Parser : : ParsingMode : : SVGPresentationAttribute } ;
2024-01-28 17:48:59 +00:00
auto x_attribute = attribute ( SVG : : AttributeNames : : x ) ;
if ( auto x_value = parse_css_value ( parsing_context , x_attribute . value_or ( String { } ) , CSS : : PropertyID : : X ) ) {
LibWeb: Split StyleComputer work into two phases with separate outputs
Before this change, StyleComputer would essentially take a DOM element,
find all the CSS rules that apply to it, and resolve the computed value
for each CSS property for that element.
This worked great, but it meant we had to do all the work of selector
matching and cascading every time.
To enable new optimizations, this change introduces a break in the
middle of this process where we've produced a "CascadedProperties".
This object contains the result of the cascade, before we've begun
turning cascaded values into computed values.
The cascaded properties are now stored with each element, which will
later allow us to do partial updates without re-running the full
StyleComputer machine. This will be particularly valuable for
re-implementing CSS inheritance, which is extremely heavy today.
Note that CSS animations and CSS transitions operate entirely on the
computed values, even though the cascade order would have you believe
they happen earlier. I'm not confident we have the right architecture
for this, but that's a separate issue.
2024-12-12 10:06:29 +01:00
cascaded_properties - > set_property_from_presentational_hint ( CSS : : PropertyID : : X , x_value . release_nonnull ( ) ) ;
2024-01-28 17:48:59 +00:00
}
auto y_attribute = attribute ( SVG : : AttributeNames : : y ) ;
if ( auto y_value = parse_css_value ( parsing_context , y_attribute . value_or ( String { } ) , CSS : : PropertyID : : Y ) ) {
LibWeb: Split StyleComputer work into two phases with separate outputs
Before this change, StyleComputer would essentially take a DOM element,
find all the CSS rules that apply to it, and resolve the computed value
for each CSS property for that element.
This worked great, but it meant we had to do all the work of selector
matching and cascading every time.
To enable new optimizations, this change introduces a break in the
middle of this process where we've produced a "CascadedProperties".
This object contains the result of the cascade, before we've begun
turning cascaded values into computed values.
The cascaded properties are now stored with each element, which will
later allow us to do partial updates without re-running the full
StyleComputer machine. This will be particularly valuable for
re-implementing CSS inheritance, which is extremely heavy today.
Note that CSS animations and CSS transitions operate entirely on the
computed values, even though the cascade order would have you believe
they happen earlier. I'm not confident we have the right architecture
for this, but that's a separate issue.
2024-12-12 10:06:29 +01:00
cascaded_properties - > set_property_from_presentational_hint ( CSS : : PropertyID : : Y , y_value . release_nonnull ( ) ) ;
2024-01-28 17:48:59 +00:00
}
2023-05-04 13:50:21 +02:00
2024-08-22 13:32:25 +02:00
if ( auto width = width_style_value_from_attribute ( ) )
LibWeb: Split StyleComputer work into two phases with separate outputs
Before this change, StyleComputer would essentially take a DOM element,
find all the CSS rules that apply to it, and resolve the computed value
for each CSS property for that element.
This worked great, but it meant we had to do all the work of selector
matching and cascading every time.
To enable new optimizations, this change introduces a break in the
middle of this process where we've produced a "CascadedProperties".
This object contains the result of the cascade, before we've begun
turning cascaded values into computed values.
The cascaded properties are now stored with each element, which will
later allow us to do partial updates without re-running the full
StyleComputer machine. This will be particularly valuable for
re-implementing CSS inheritance, which is extremely heavy today.
Note that CSS animations and CSS transitions operate entirely on the
computed values, even though the cascade order would have you believe
they happen earlier. I'm not confident we have the right architecture
for this, but that's a separate issue.
2024-12-12 10:06:29 +01:00
cascaded_properties - > set_property_from_presentational_hint ( CSS : : PropertyID : : Width , width . release_nonnull ( ) ) ;
2022-02-15 16:42:00 +00:00
2024-08-22 13:32:25 +02:00
if ( auto height = height_style_value_from_attribute ( ) )
LibWeb: Split StyleComputer work into two phases with separate outputs
Before this change, StyleComputer would essentially take a DOM element,
find all the CSS rules that apply to it, and resolve the computed value
for each CSS property for that element.
This worked great, but it meant we had to do all the work of selector
matching and cascading every time.
To enable new optimizations, this change introduces a break in the
middle of this process where we've produced a "CascadedProperties".
This object contains the result of the cascade, before we've begun
turning cascaded values into computed values.
The cascaded properties are now stored with each element, which will
later allow us to do partial updates without re-running the full
StyleComputer machine. This will be particularly valuable for
re-implementing CSS inheritance, which is extremely heavy today.
Note that CSS animations and CSS transitions operate entirely on the
computed values, even though the cascade order would have you believe
they happen earlier. I'm not confident we have the right architecture
for this, but that's a separate issue.
2024-12-12 10:06:29 +01:00
cascaded_properties - > set_property_from_presentational_hint ( CSS : : PropertyID : : Height , height . release_nonnull ( ) ) ;
2020-07-19 23:01:53 -07:00
}
2024-11-14 08:14:16 -05:00
void SVGSVGElement : : attribute_changed ( FlyString const & name , Optional < String > const & old_value , Optional < String > const & value , Optional < FlyString > const & namespace_ )
2021-09-15 01:12:41 +02:00
{
2024-11-14 08:14:16 -05:00
Base : : attribute_changed ( name , old_value , value , namespace_ ) ;
2021-09-15 01:12:41 +02:00
2024-01-24 22:54:16 +01:00
if ( name . equals_ignoring_ascii_case ( SVG : : AttributeNames : : viewBox ) ) {
if ( ! value . has_value ( ) ) {
m_view_box_for_bindings - > set_nulled ( true ) ;
} else {
m_view_box = try_parse_view_box ( value . value_or ( String { } ) ) ;
m_view_box_for_bindings - > set_nulled ( ! m_view_box . has_value ( ) ) ;
if ( m_view_box . has_value ( ) ) {
m_view_box_for_bindings - > set_base_val ( Gfx : : DoubleRect { m_view_box - > min_x , m_view_box - > min_y , m_view_box - > width , m_view_box - > height } ) ;
m_view_box_for_bindings - > set_anim_val ( Gfx : : DoubleRect { m_view_box - > min_x , m_view_box - > min_y , m_view_box - > width , m_view_box - > height } ) ;
}
}
}
2023-04-17 01:20:24 +01:00
if ( name . equals_ignoring_ascii_case ( SVG : : AttributeNames : : preserveAspectRatio ) )
2023-11-19 18:10:36 +13:00
m_preserve_aspect_ratio = AttributeParser : : parse_preserve_aspect_ratio ( value . value_or ( String { } ) ) ;
2023-06-20 09:39:14 +02:00
if ( name . equals_ignoring_ascii_case ( SVG : : AttributeNames : : width ) | | name . equals_ignoring_ascii_case ( SVG : : AttributeNames : : height ) )
update_fallback_view_box_for_svg_as_image ( ) ;
}
void SVGSVGElement : : update_fallback_view_box_for_svg_as_image ( )
{
// AD-HOC: This creates a fallback viewBox for SVGs used as images.
// If the <svg> element has width and height, but no viewBox,
// we fall back to a synthetic viewBox="0 0 width height".
Optional < double > width ;
Optional < double > height ;
2024-01-16 19:04:45 +01:00
auto width_attribute = get_attribute_value ( SVG : : AttributeNames : : width ) ;
2025-02-05 12:08:27 +00:00
auto parsing_context = CSS : : Parser : : ParsingParams { document ( ) } ;
2024-01-16 19:04:45 +01:00
if ( auto width_value = parse_css_value ( parsing_context , width_attribute , CSS : : PropertyID : : Width ) ) {
2023-06-20 09:39:14 +02:00
if ( width_value - > is_length ( ) & & width_value - > as_length ( ) . length ( ) . is_absolute ( ) )
width = width_value - > as_length ( ) . length ( ) . absolute_length_to_px ( ) . to_double ( ) ;
}
2024-01-16 19:04:45 +01:00
auto height_attribute = get_attribute_value ( SVG : : AttributeNames : : height ) ;
if ( auto height_value = parse_css_value ( parsing_context , height_attribute , CSS : : PropertyID : : Height ) ) {
2023-06-20 09:39:14 +02:00
if ( height_value - > is_length ( ) & & height_value - > as_length ( ) . length ( ) . is_absolute ( ) )
height = height_value - > as_length ( ) . length ( ) . absolute_length_to_px ( ) . to_double ( ) ;
}
2023-06-20 19:55:53 +02:00
if ( width . has_value ( ) & & width . value ( ) > 0 & & height . has_value ( ) & & height . value ( ) > 0 ) {
2023-06-20 09:39:14 +02:00
m_fallback_view_box_for_svg_as_image = ViewBox { 0 , 0 , width . value ( ) , height . value ( ) } ;
} else {
m_fallback_view_box_for_svg_as_image = { } ;
}
}
void SVGSVGElement : : set_fallback_view_box_for_svg_as_image ( Optional < ViewBox > view_box )
{
m_fallback_view_box_for_svg_as_image = view_box ;
}
Optional < ViewBox > SVGSVGElement : : view_box ( ) const
{
if ( m_view_box . has_value ( ) )
return m_view_box ;
2023-06-20 19:55:53 +02:00
// NOTE: If the parent is a document, we're an <svg> element used as an image.
if ( parent ( ) & & parent ( ) - > is_document ( ) & & m_fallback_view_box_for_svg_as_image . has_value ( ) )
2023-06-20 09:39:14 +02:00
return m_fallback_view_box_for_svg_as_image ;
return { } ;
2021-09-15 01:12:41 +02:00
}
2024-11-15 04:01:23 +13:00
GC : : Ref < SVGAnimatedLength > SVGSVGElement : : x ( ) const
2024-04-01 00:51:24 +01:00
{
return svg_animated_length_for_property ( CSS : : PropertyID : : X ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < SVGAnimatedLength > SVGSVGElement : : y ( ) const
2024-04-01 00:51:24 +01:00
{
return svg_animated_length_for_property ( CSS : : PropertyID : : Y ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < SVGAnimatedLength > SVGSVGElement : : width ( ) const
2024-04-01 00:51:24 +01:00
{
return svg_animated_length_for_property ( CSS : : PropertyID : : Width ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < SVGAnimatedLength > SVGSVGElement : : height ( ) const
2024-04-01 00:51:24 +01:00
{
return svg_animated_length_for_property ( CSS : : PropertyID : : Height ) ;
}
float SVGSVGElement : : current_scale ( ) const
{
dbgln ( " (STUBBED) SVGSVGElement::current_scale(). Called on: {} " , debug_description ( ) ) ;
return 1.0f ;
}
void SVGSVGElement : : set_current_scale ( float )
{
dbgln ( " (STUBBED) SVGSVGElement::set_current_scale(). Called on: {} " , debug_description ( ) ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < Geometry : : DOMPointReadOnly > SVGSVGElement : : current_translate ( ) const
2024-04-01 00:51:24 +01:00
{
dbgln ( " (STUBBED) SVGSVGElement::current_translate(). Called on: {} " , debug_description ( ) ) ;
return Geometry : : DOMPointReadOnly : : create ( realm ( ) ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < DOM : : NodeList > SVGSVGElement : : get_intersection_list ( GC : : Ref < Geometry : : DOMRectReadOnly > , GC : : Ptr < SVGElement > ) const
2024-04-01 00:51:24 +01:00
{
dbgln ( " (STUBBED) SVGSVGElement::get_intersection_list(). Called on: {} " , debug_description ( ) ) ;
return DOM : : StaticNodeList : : create ( realm ( ) , { } ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < DOM : : NodeList > SVGSVGElement : : get_enclosure_list ( GC : : Ref < Geometry : : DOMRectReadOnly > , GC : : Ptr < SVGElement > ) const
2024-04-01 00:51:24 +01:00
{
dbgln ( " (STUBBED) SVGSVGElement::get_enclosure_list(). Called on: {} " , debug_description ( ) ) ;
return DOM : : StaticNodeList : : create ( realm ( ) , { } ) ;
}
2024-11-15 04:01:23 +13:00
bool SVGSVGElement : : check_intersection ( GC : : Ref < SVGElement > , GC : : Ref < Geometry : : DOMRectReadOnly > ) const
2024-04-01 00:51:24 +01:00
{
dbgln ( " (STUBBED) SVGSVGElement::check_intersection(). Called on: {} " , debug_description ( ) ) ;
return false ;
}
2024-11-15 04:01:23 +13:00
bool SVGSVGElement : : check_enclosure ( GC : : Ref < SVGElement > , GC : : Ref < Geometry : : DOMRectReadOnly > ) const
2024-04-01 00:51:24 +01:00
{
dbgln ( " (STUBBED) SVGSVGElement::check_enclosure(). Called on: {} " , debug_description ( ) ) ;
return false ;
}
void SVGSVGElement : : deselect_all ( ) const
{
// This is equivalent to calling document.getSelection().removeAllRanges() on the document that this ‘ svg’ element is in.
if ( auto selection = document ( ) . get_selection ( ) )
selection - > remove_all_ranges ( ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < SVGLength > SVGSVGElement : : create_svg_length ( ) const
2024-04-01 00:51:24 +01:00
{
// A new, detached SVGLength object whose value is the unitless <number> 0.
return SVGLength : : create ( realm ( ) , SVGLength : : SVG_LENGTHTYPE_NUMBER , 0 ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < Geometry : : DOMPoint > SVGSVGElement : : create_svg_point ( ) const
2024-04-01 00:51:24 +01:00
{
// A new, detached DOMPoint object whose coordinates are all 0.
return Geometry : : DOMPoint : : from_point ( vm ( ) , Geometry : : DOMPointInit { } ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < Geometry : : DOMMatrix > SVGSVGElement : : create_svg_matrix ( ) const
2024-04-01 00:51:24 +01:00
{
// A new, detached DOMMatrix object representing the identity matrix.
return Geometry : : DOMMatrix : : create ( realm ( ) ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < Geometry : : DOMRect > SVGSVGElement : : create_svg_rect ( ) const
2024-04-01 00:51:24 +01:00
{
// A new, DOMRect object whose x, y, width and height are all 0.
return Geometry : : DOMRect : : construct_impl ( realm ( ) , 0 , 0 , 0 , 0 ) . release_value_but_fixme_should_propagate_errors ( ) ;
}
2024-11-15 04:01:23 +13:00
GC : : Ref < SVGTransform > SVGSVGElement : : create_svg_transform ( ) const
2024-04-01 00:51:24 +01:00
{
return SVGTransform : : create ( realm ( ) ) ;
}
2024-11-26 12:30:11 +01:00
SVGSVGElement : : NaturalMetrics SVGSVGElement : : negotiate_natural_metrics ( SVG : : SVGSVGElement const & svg_root )
{
// https://www.w3.org/TR/SVG2/coords.html#SizingSVGInCSS
NaturalMetrics natural_metrics ;
// The intrinsic dimensions must also be determined from the width and height sizing properties.
// If either width or height are not specified, the used value is the initial value 'auto'.
// 'auto' and percentage lengths must not be used to determine an intrinsic width or intrinsic height.
if ( auto width = svg_root . width_style_value_from_attribute ( ) ; width & & width - > is_length ( ) & & width - > as_length ( ) . length ( ) . is_absolute ( ) ) {
natural_metrics . width = width - > as_length ( ) . length ( ) . absolute_length_to_px ( ) ;
}
if ( auto height = svg_root . height_style_value_from_attribute ( ) ; height & & height - > is_length ( ) & & height - > as_length ( ) . length ( ) . is_absolute ( ) ) {
natural_metrics . height = height - > as_length ( ) . length ( ) . absolute_length_to_px ( ) ;
}
// The intrinsic aspect ratio must be calculated using the following algorithm. If the algorithm returns null, then there is no intrinsic aspect ratio.
natural_metrics . aspect_ratio = [ & ] ( ) - > Optional < CSSPixelFraction > {
// 1. If the width and height sizing properties on the ‘ svg’ element are both absolute values:
if ( natural_metrics . width . has_value ( ) & & natural_metrics . height . has_value ( ) ) {
if ( natural_metrics . width ! = 0 & & natural_metrics . height ! = 0 ) {
// 1. return width / height
return * natural_metrics . width / * natural_metrics . height ;
}
return { } ;
}
// FIXME: 2. If an SVG View is active:
// FIXME: 1. let viewbox be the viewbox defined by the active SVG View
// FIXME: 2. return viewbox.width / viewbox.height
// 3. If the ‘ viewBox’ on the ‘ svg’ element is correctly specified:
if ( svg_root . view_box ( ) . has_value ( ) ) {
// 1. let viewbox be the viewbox defined by the ‘ viewBox’ attribute on the ‘ svg’ element
auto const & viewbox = svg_root . view_box ( ) . value ( ) ;
// 2. return viewbox.width / viewbox.height
auto viewbox_width = CSSPixels : : nearest_value_for ( viewbox . width ) ;
auto viewbox_height = CSSPixels : : nearest_value_for ( viewbox . height ) ;
if ( viewbox_width ! = 0 & & viewbox_height ! = 0 )
return viewbox_width / viewbox_height ;
return { } ;
}
// 4. return null
return { } ;
} ( ) ;
return natural_metrics ;
}
2020-07-19 23:01:53 -07:00
}