module Svg_types:sig
..end
Svg.M
)
This module is experimental, it may lack of some attributes,
and the interface is very low level and do not take deeply into account
the needs of SVG elements.
This module defines basic data types for data, attributes
and element occuring in SVG documents.
It is based on the specification available at http://www.w3.org/TR/SVG/.
This module is experimental, it may lack of some attributes,
and the interface is very low level and do not take deeply into account
the needs of SVG elements.
This module is experimental, it may lack of some attributes,
and the interface is very low level and do not take deeply into account
the needs of SVG elements.
This module is experimental, it may lack of some attributes,
and the interface is very low level and do not take deeply into account
the needs of SVG elements.
typeanimation_element =
[ `Animate | `AnimateColor | `AnimateMotion | `AnimateTransform | `Set ]
typedescriptive_element =
[ `Desc | `Metadata | `Title ]
typebasic_shape_element =
[ `Circle | `Ellipse | `Line | `Polygon | `Polyline | `Rect ]
typecontainer_element =
[ `A
| `Defs
| `G
| `Glyph
| `Marker
| `Mask
| `Missing_glyph
| `Pattern
| `Svg
| `Switch
| `Symbol ]
typefilter_primitive_element =
[ `FeBlend
| `FeColorMatrix
| `FeComponentTransfer
| `FeComposite
| `FeConvolveMatrix
| `FeDiffuseLighting
| `FeDisplacementMap
| `FeFlood
| `FeGaussianBlur
| `FeImage
| `FeMerge
| `FeMorphology
| `FeOffset
| `FeSpecularLighting
| `FeTile
| `FeTurbulence ]
typelight_source_element =
[ `FeDistantLight | `FePointLight | `FeSpotLight ]
typeshape_element =
[ `Circle | `Ellipse | `Line | `Path | `Polygon | `Polyline | `Rect ]
typestructural_element =
[ `Defs | `G | `Svg | `Symbol | `Use ]
typetext_content_element =
[ `AltGlyph | `Text | `TextPath | `Tref | `Tspan ]
typetext_content_child_element =
[ `AltGlyph | `TextPath | `Tref | `Tspan ]
typegradient_element =
[ `Lineargradient | `Radialgradient ]
typegraphics_element =
[ `Circle
| `Ellipse
| `Image
| `Line
| `Path
| `Polygon
| `Polyline
| `Rect
| `Text
| `Use ]
typegraphics_ref_element =
[ `Image | `Use ]
typeconditional_processing_attr =
[ `RequiredExtensions | `RequiredFeatures | `SystemLanguage ]
typecore_attr =
[ `Id | `Xml_base | `Xml_lang | `Xml_space ]
typetransfer_attr =
[ `Amplitude
| `Exponent
| `Intercept
| `Offset_transfer
| `Slope
| `TableValues
| `Type_transfert ]
typedocument_event_attr =
[ `OnAbort | `OnError | `OnResize | `OnScroll | `OnUnload | `OnZoom ]
typefilter_primitive_attr =
[ `Height | `Result | `Width | `X | `Y ]
typeanimation_event_attr =
[ `OnBegin | `OnEnd | `OnLoad | `OnRepeat ]
typeanimation_attr_target_attr =
[ `AttributeName | `AttributeType ]
typeanimation_timing_attr =
[ `Begin
| `Dur
| `End
| `Fill_Animation
| `Max
| `Min
| `RepeatCount
| `RepeatDur
| `Restart ]
typeanimation_value_attr =
[ `By | `CalcMode | `From | `KeySplines | `KeyTimes | `To | `Values ]
typeanimation_addition_attr =
[ `Accumulate | `Additive ]
typepresentation_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode ]
typegraphical_event_attr =
[ `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp ]
typexlink_attr =
[ `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type ]
typeiri =
string
RFC3987
. An IRI reference serves as a reference
to a resource or (with a fragment identifier) to a secondary
resource. See References and the ‘defs’ element..module Unit:sig
..end
typecoord =
Unit.length
typenumber =
float
typenumber_optional_number =
number * number option
typepercentage =
int
typestrings =
string list
typecolor =
string
typeicccolor =
string
typepaint_whitout_icc =
[ `Color of color * icccolor option
| `CurrentColor
| `None ]
typepaint =
[ `Color of color * icccolor option
| `CurrentColor
| `Icc of iri * paint_whitout_icc option
| `None ]
type
transform =
| |
Matrix of |
| |
Translate of |
| |
Scale of |
| |
Rotate of |
| |
SkewX of |
| |
SkewY of |
typespacestrings =
string list
typecommastrings =
string list
typetransforms =
transform list
typefourfloats =
float * float * float * float
typelengths =
Unit.length list
typenumbers =
float list
typenumbers_semicolon =
float list
typecoords =
(float * float) list
typerotate =
float list
typepcdata =
[ `PCDATA ]
typesvg =
[ `Svg ]
typesvg_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typesvg_attr =
[ `Alignment_Baseline
| `BaseProfile
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `ContentScriptType
| `ContentStyleType
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnAbort
| `OnActivate
| `OnClick
| `OnError
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `OnResize
| `OnScroll
| `OnUnload
| `OnZoom
| `Opacity
| `Overflow
| `Pointer_Events
| `PreserveAspectRatio
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Version
| `ViewBox
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y
| `ZoomAndPlan ]
typeg =
[ `G ]
typeg_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typeg_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typedefs =
[ `Defs ]
typedefs_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typedefs_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typedesc =
[ `Desc ]
typedesc_content =
[ `PCDATA ]
typedesc_attr =
[ `Class | `Id | `Style | `Xml_base | `Xml_lang | `Xml_space ]
typetitle =
[ `Title ]
typetitle_content =
[ `PCDATA ]
typetitle_attr =
desc_attr
typesymbol =
[ `Symbol ]
typesymbol_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Pattern
| `Radialgradient
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typesymbol_attr =
[ `Class
| `ExternalResourcesRequired
| `PreserveAspectRatio
| `Style
| `ViewBox ]
typeuse =
[ `Use ]
typeuse_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typeuse_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typeimage =
[ `Image ]
typeimage_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typeimage_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `PreserveAspectRatio
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typeswitch =
[ `Switch ]
typeswitch_content =
[ `A
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `Desc
| `Ellipse
| `ForeignObject
| `G
| `Image
| `Line
| `Metadata
| `Path
| `Polygon
| `Polyline
| `Rect
| `Set
| `Svg
| `Switch
| `Text
| `Title
| `Use ]
typeswitch_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typestyle =
[ `Style ]
typestyle_content =
[ `PCDATA ]
typestyle_attr =
[ `Id | `Media | `Title | `Type | `Xml_base | `Xml_lang | `Xml_space ]
typepath =
[ `Path ]
typepath_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typepath_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `D
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `PathLength
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typerect =
[ `Rect ]
typerect_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typerect_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Rx
| `Ry
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typecircle =
[ `Circle ]
typecircle_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typecircle_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Cx
| `Cy
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `R
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeellipse =
[ `Ellipse ]
typeellipse_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typeellipse_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Cx
| `Cy
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Rx
| `Ry
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeline =
[ `Line ]
typeline_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typeline_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `X1
| `X2
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y1
| `Y2 ]
typepolyline =
[ `Polyline ]
typepolyline_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typepolyline_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `Points
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typepolygon =
[ `Polygon ]
typepolygon_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `Set
| `Title ]
typepolygon_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `Points
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typetext =
[ `Text ]
typetext_content =
[ `A
| `AltGlyph
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Desc
| `Metadata
| `PCDATA
| `Set
| `TextPath
| `Title
| `Tref
| `Tspan ]
typetext_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Dx_list
| `Dy_list
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `LengthAdjust
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Rotate
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `SystemLanguage
| `TextLength
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `X_list
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y_list ]
typetspan =
[ `Tspan ]
typetspan_content =
[ `A
| `AltGlyph
| `Animate
| `AnimateColor
| `Desc
| `Id
| `Metadata
| `PCDATA
| `Set
| `Title
| `Tref
| `Tspan
| `Xml_base
| `Xml_lang
| `Xml_space ]
typetspan_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Dx_list
| `Dy_list
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `LengthAdjust
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Rotate
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `TextLength
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `X_list
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y_list ]
typetref =
[ `Tref ]
typetref_content =
[ `Animate | `AnimateColor | `Desc | `Metadata | `Set | `Title ]
typetref_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typetextpath =
[ `TextPath ]
typetextpath_content =
[ `A
| `AltGlyph
| `Animate
| `AnimateColor
| `Desc
| `Metadata
| `PCDATA
| `Set
| `Title
| `Tref
| `Tspan ]
typetextpath_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Method
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Spacing
| `StartOffset
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typealtglyph =
[ `AltGlyph ]
typealtglyph_content =
[ `PCDATA ]
typealtglyph_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Dx_list
| `Dy_list
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Format
| `GlyphRef
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Rotate
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `X_list
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y_list ]
typealtglyphdef =
[ `AltGlyphDef ]
typealtglyphdef_attr =
core_attr
typealtglyphitem =
[ `AltGlyphItem ]
typealtglyphitem_content =
[ `glyphRef ]
typealtglyphitem_attr =
core_attr
typeglyphref =
[ `GlyphRef ]
typeglyphref_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Dx_single
| `Dy_single
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Format
| `GlyphRef
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typemarker =
[ `Marker ]
typemarker_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typemarker_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `MarkerHeight
| `MarkerUnits
| `MarkerWidth
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Orient
| `Overflow
| `Pointer_Events
| `PreserveAspectRatio
| `RefX
| `RefY
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `ViewBox
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typecolorprofile =
[ `ColorProfile ]
typecolorprofile_content =
descriptive_element
typecolorprofile_attr =
[ `Id
| `Local
| `Name
| `Rendering_Intent
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typelineargradient =
[ `Lineargradient ]
typelineargradient_content =
[ `Animate | `AnimateTransform | `Desc | `Metadata | `Set | `Stop | `Title ]
typelineargradient_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `GradientTransform
| `GradientUnits
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `SpreadMethod
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `X1
| `X2
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y1
| `Y2 ]
typeradialgradient =
[ `Radialgradient ]
typeradialgradient_content =
[ `Animate | `AnimateTransform | `Desc | `Metadata | `Set | `Stop | `Title ]
typeradialgradient_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Cx
| `Cy
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Fx
| `Fy
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `GradientTransform
| `GradientUnits
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `R
| `Shape_Rendering
| `SpreadMethod
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typestop =
[ `Stop ]
typestop_content =
[ `Animate | `Animate_Color | `Set ]
typestop_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Offset
| `Opacity
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typepattern =
[ `Pattern ]
typepattern_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typepattern_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `PatternContentUnits
| `PatternTransform
| `PatternUnits
| `Pointer_Events
| `PreserveAspectRatio
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `ViewBox
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typeclippath =
[ `ClipPath ]
typeclippath_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `ClipPathUnits
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeclippath_content =
[ `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `Desc
| `Ellipse
| `Line
| `Metadata
| `Path
| `Polygon
| `Polyline
| `Rect
| `Set
| `Text
| `Title
| `Use ]
typemask =
[ `Mask ]
typemask_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typemask_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `MaskContentUnits
| `MaskUnits
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefilter =
[ `Filter ]
typefilter_content =
[ `Animate
| `Desc
| `FeBlend
| `FeColorMatrix
| `FeComponentTransfer
| `FeComposite
| `FeConvolveMatrix
| `FeDiffuseLighting
| `FeDisplacementMap
| `FeFlood
| `FeGaussianBlur
| `FeImage
| `FeMerge
| `FeMorphology
| `FeOffset
| `FeSpecularLighting
| `FeTile
| `FeTurbulence
| `Metadata
| `Set
| `Title ]
typefilter_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `FilterRes
| `FilterUnits
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `PrimitiveUnits
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefedistantlight =
[ `FeDistantLight ]
typefedistantlight_content =
[ `Animate | `Set ]
typefedistantlight_attr =
[ `Azimuth | `Elevation | `Id | `Xml_base | `Xml_lang | `Xml_space ]
typefepointlight =
[ `FePointLight ]
typefepointlight_content =
[ `Animate | `Set ]
typefepointlight_attr =
[ `Id | `X | `Xml_base | `Xml_lang | `Xml_space | `Y | `Z ]
typefespotlight =
[ `FeSpotLight ]
typefespotlight_content =
[ `Animate | `Set ]
typefespotlight_attr =
[ `Id
| `LimitingConeAngle
| `PointsAtX
| `PointsAtY
| `PointsAtZ
| `SpecularExponent
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y
| `Z ]
typefeblend =
[ `FeBlend ]
typefeblend_content =
[ `Animate | `Set ]
typefeblend_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `In2
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Mode
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefecolormatrix =
[ `FeColorMatrix ]
typefecolormatrix_content =
[ `Animate | `Set ]
typefecolormatrix_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Typefecolor
| `Unicode_Bidi
| `Values
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefecomponenttransfer =
[ `FeComponentTransfer ]
typefecomponenttransfer_content =
[ `FeFuncA | `FeFuncB | `FeFuncG | `FeFuncR ]
typefecomponenttransfer_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefefunca =
[ `FeFuncA ]
typefefunca_content =
[ `Animate | `Set ]
typefefunca_attr =
[ `Amplitude
| `Exponent
| `Id
| `Intercept
| `Offset_transfer
| `Slope
| `TableValues
| `Type_transfert
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefefuncg =
[ `FeFuncA ]
typefefuncg_content =
[ `Animate | `Set ]
typefefuncg_attr =
[ `Amplitude
| `Exponent
| `Id
| `Intercept
| `Offset_transfer
| `Slope
| `TableValues
| `Type_transfert
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefefuncb =
[ `FeFuncA ]
typefefuncb_content =
[ `Animate | `Set ]
typefefuncb_attr =
[ `Amplitude
| `Exponent
| `Id
| `Intercept
| `Offset_transfer
| `Slope
| `TableValues
| `Type_transfert
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefefuncr =
[ `FeFuncA ]
typefefuncr_content =
[ `Animate | `Set ]
typefefuncr_attr =
[ `Amplitude
| `Exponent
| `Id
| `Intercept
| `Offset_transfer
| `Slope
| `TableValues
| `Type_transfert
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefecomposite =
[ `FeComposite ]
typefecomposite_content =
[ `Animate | `Set ]
typefecomposite_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `In2
| `K1
| `K2
| `K3
| `K4
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Operator
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefeconvolvematrix =
[ `FeConvolveMatrix ]
typefeconvolvematrix_content =
[ `Animate | `Set ]
typefeconvolvematrix_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Bias
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Divisor
| `Dominant_Baseline
| `EdgeMode
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `KernelMatrix
| `KernelUnitLength
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Order
| `Overflow
| `Pointer_Events
| `PreserveAlpha
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `TargetX
| `TargetY
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefediffuselighting =
[ `FeDiffuseLighting ]
typefediffuselighting_content =
[ `Desc | `FeDistantLight | `FePointLight | `FeSpotLight | `Metadata | `Title ]
typefediffuselighting_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `DiffuseConstant
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `KernelUnitLength
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SurfaceScale
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefedisplacementmap =
[ `FeDisplacementMap ]
typefedisplacementmap_content =
[ `Animate | `Set ]
typefedisplacementmap_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `In2
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Scale
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `XChannelSelector
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y
| `YChannelSelector ]
typefeflood =
[ `FeFlood ]
typefeflood_content =
[ `Animate | `AnimateColor | `Set ]
typefeflood_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefegaussianblur =
[ `FeGaussianBlur ]
typefegaussianblur_content =
[ `Animate | `AnimateColor | `Set ]
typefegaussianblur_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `StdDeviation
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefeimage =
[ `FeImage ]
typefeimage_content =
[ `Animate | `AnimateColor | `Set ]
typefeimage_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `PreserveAspectRadio
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefemerge =
[ `FeMerge ]
typefemerge_content =
[ `FeMergeNode ]
typefemerge_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefemorphology =
[ `FeMorphology ]
typefemorphology_content =
[ `Animate | `Set ]
typefemorphology_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Operator_morphology
| `Overflow
| `Pointer_Events
| `Radius
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefeoffset =
[ `FeOffset ]
typefeoffset_content =
[ `Animate | `Set ]
typefeoffset_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Dx
| `Dy
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefespecularlighting =
[ `FeSpecularLighting ]
typefespecularlighting_content =
[ `Desc | `FeDistantLight | `FePointLight | `FeSpotLight | `Metadata | `Title ]
typefespecularlighting_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `KernelUnitLength
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `SpecularConstant
| `SpecularExponent
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SurfaceScale
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefetile =
[ `FeTile ]
typefetile_content =
[ `Animate | `Set ]
typefetile_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `In
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typefeturbulence =
[ `FeTurbulence ]
typefeturbulence_content =
[ `Animate | `Set ]
typefeturbulence_attr =
[ `Alignment_Baseline
| `BaseFrequency
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `NumOctaves
| `Opacity
| `Overflow
| `Pointer_Events
| `Result
| `Seed
| `Shape_Rendering
| `StitchTiles
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Type_stitch
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typecursor =
[ `Cursor ]
typecursor_content =
descriptive_element
typecursor_attr =
[ `ExternalResourcesRequired
| `Id
| `RequiredExtensions
| `RequiredFeatures
| `SystemLanguage
| `X
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]
typea =
[ `A ]
typea_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typea_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Target
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeview =
[ `View ]
typeview_content =
descriptive_element
typeview_attr =
[ `ExternalResourcesRequired
| `Id
| `PreserveAspectRatio
| `ViewBox
| `ViewTarget
| `Xml_base
| `Xml_lang
| `Xml_space
| `ZoomAndPan ]
typescript =
[ `Script ]
typescript_content =
[ `PCDATA ]
typescript_attr =
[ `ExternalResourcesRequired
| `Id
| `Type
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeanimation =
[ `Animation ]
typeanimation_content =
descriptive_element
typeanimation_attr =
[ `Accumulate
| `Additive
| `AttributeName
| `AttributeType
| `Begin
| `By
| `CalcMode
| `Dur
| `End
| `ExternalResourcesRequired
| `Fill_Animation
| `From
| `Id
| `KeySplines
| `KeyTimes
| `Max
| `Min
| `OnBegin
| `OnEnd
| `OnLoad
| `OnRepeat
| `RepeatCount
| `RepeatDur
| `RequiredExtensions
| `RequiredFeatures
| `Restart
| `SystemLanguage
| `To
| `Values
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeset =
[ `Set ]
typeset_content =
descriptive_element
typeset_attr =
[ `AttributeName
| `AttributeType
| `Begin
| `Dur
| `End
| `ExternalResourcesRequired
| `Fill_Animation
| `Id
| `Max
| `Min
| `OnBegin
| `OnEnd
| `OnLoad
| `OnRepeat
| `RepeatCount
| `RepeatDur
| `RequiredExtensions
| `RequiredFeatures
| `Restart
| `SystemLanguage
| `To
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeanimatemotion =
[ `AnimateMotion ]
typeanimatemotion_content =
[ `Desc | `Metadata | `Mpath | `Title ]
typeanimatemotion_attr =
[ `Accumulate
| `Additive
| `Begin
| `By
| `CalcMode
| `Dur
| `End
| `ExternalResourcesRequired
| `Fill_Animation
| `From
| `Id
| `KeyPoints
| `KeySplines
| `KeyTimes
| `Max
| `Min
| `OnBegin
| `OnEnd
| `OnLoad
| `OnRepeat
| `Origin
| `Path
| `RepeatCount
| `RepeatDur
| `RequiredExtensions
| `RequiredFeatures
| `Restart
| `Rotate
| `SystemLanguage
| `To
| `Values
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typempath =
[ `Mpath ]
typempath_content =
descriptive_element
typempath_attr =
[ `ExternalResourcesRequired
| `Id
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeanimatecolor =
[ `AnimateColor ]
typeanimatecolor_content =
descriptive_element
typeanimatecolor_attr =
[ `Accumulate
| `Additive
| `AttributeName
| `AttributeType
| `Begin
| `By
| `CalcMode
| `Dur
| `End
| `ExternalResourcesRequired
| `Fill_Animation
| `From
| `Id
| `KeySplines
| `KeyTimes
| `Max
| `Min
| `OnBegin
| `OnEnd
| `OnLoad
| `OnRepeat
| `RepeatCount
| `RepeatDur
| `RequiredExtensions
| `RequiredFeatures
| `Restart
| `SystemLanguage
| `To
| `Values
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typeanimatetransform =
[ `AnimateTransform ]
typeanimatetransform_content =
descriptive_element
typeanimatetransform_attr =
[ `Accumulate
| `Additive
| `AttributeName
| `AttributeType
| `Begin
| `By
| `CalcMode
| `Dur
| `End
| `ExternalResourcesRequired
| `Fill_Animation
| `From
| `Id
| `KeySplines
| `KeyTimes
| `Max
| `Min
| `OnBegin
| `OnEnd
| `OnLoad
| `OnRepeat
| `RepeatCount
| `RepeatDur
| `RequiredExtensions
| `RequiredFeatures
| `Restart
| `SystemLanguage
| `To
| `Typeanimatecolor
| `Values
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefont =
[ `Font ]
typefont_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `HorizAdvX
| `HorizOriginX
| `HorizOriginY
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `VertAdvY
| `VertOriginX
| `VertOriginY
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefont_content =
[ `Desc
| `Font_Face
| `Glyph
| `Hkern
| `Metadata
| `MissingGlyph
| `Title
| `Vkern ]
typeglyph =
[ `Glyph ]
typeglyph_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typeglyph_attr =
[ `Alignment_Baseline
| `ArabicForm
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `D
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `GlyphName
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `HorizAdvX
| `Id
| `Image_Rendering
| `Kerning
| `Lang
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Orientation
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode
| `Unicode_Bidi
| `VertAdvY
| `VertOriginX
| `VertOriginY
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typemissingglyph =
[ `MissingGlyph ]
typemissingglyph_content =
[ `A
| `AltGlyphDef
| `Animate
| `AnimateColor
| `AnimateMotion
| `AnimateTransform
| `Circle
| `ClipPath
| `Color_Profile
| `Cursor
| `Defs
| `Desc
| `Ellipse
| `Filter
| `Font
| `Font_Face
| `ForeignObject
| `G
| `Image
| `Line
| `Lineargradient
| `Marker
| `Mask
| `Metadata
| `Path
| `Pattern
| `Polygon
| `Polyline
| `Radialgradient
| `Rect
| `Script
| `Set
| `Style
| `Svg
| `Switch
| `Symbol
| `Text
| `Title
| `Use
| `View ]
typemissingglyph_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `D
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `HorizAdvX
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `Opacity
| `Overflow
| `Pointer_Events
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Unicode_Bidi
| `VertAdvY
| `VertOriginX
| `VertOriginY
| `Visibility
| `Word_Spacing
| `Writing_Mode
| `Xml_base
| `Xml_lang
| `Xml_space ]
typehkern =
[ `Hkern ]
typehkern_attr =
[ `G1 | `G2 | `Id | `K | `U1 | `U2 | `Xml_base | `Xml_lang | `Xml_space ]
typevkern =
[ `Vkern ]
typevkern_attr =
[ `G1 | `G2 | `Id | `K | `U1 | `U2 | `Xml_base | `Xml_lang | `Xml_space ]
typefontface =
[ `Font_Face ]
typefontface_content =
[ `Desc | `Font_Face_Src | `Metadata | `Title ]
typefontface_attr =
[ `AccentHeight
| `Alphabetic
| `Ascent
| `Bbox
| `CapHeight
| `Descent
| `Font_Family
| `Font_Size
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Hanging
| `Id
| `Ideographic
| `Mathematical
| `OverlinePosition
| `OverlineThickness
| `Panose1
| `Slope
| `Stemh
| `Stemv
| `StrikethroughPosition
| `StrikethroughThickness
| `UnderlinePosition
| `UnderlineThickness
| `UnicodeRange
| `UnitsPerEm
| `VAlphabetic
| `VHanging
| `VIdeographic
| `VMathematical
| `Widths
| `XHeight
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefontfacesrc =
[ `Font_Face_Src ]
typefontfacesrc_content =
[ `Font_Face_Name | `Font_Face_Uri ]
typefontfacesrc_attr =
core_attr
typefontfaceuri =
[ `Font_Face_Uri ]
typefontfaceuri_content =
[ `Font_Face_Format ]
typefontfaceuri_attr =
[ `Id
| `Xlink_actuate
| `Xlink_arcrole
| `Xlink_href
| `Xlink_role
| `Xlink_show
| `Xlink_title
| `Xlink_type
| `Xml_base
| `Xml_lang
| `Xml_space ]
typefontfaceformat =
[ `Font_Face_Format ]
typefontfaceformat_attr =
[ `Id | `String | `Xml_base | `Xml_lang | `Xml_space ]
typefontfacename =
[ `Font_Face_Name ]
typefontfacename_attr =
[ `Id | `Name | `Xml_base | `Xml_lang | `Xml_space ]
typemetadata =
[ `Metadata ]
typemetadata_attr =
core_attr
typeforeignobject =
[ `ForeignObject ]
typeforeignobject_attr =
[ `Alignment_Baseline
| `Baseline_Shift
| `Class
| `Clip
| `Clip_Path
| `Clip_Rule
| `Color
| `Color_Interpolation
| `Color_interpolation_filters
| `Color_profile
| `Color_rendering
| `Cursor
| `Direction
| `Display
| `Dominant_Baseline
| `Enable_background
| `ExternalResourcesRequired
| `Fill
| `Fill_opacity
| `Fill_rule
| `Filter
| `Flood_Color
| `Flood_Opacity
| `Font_Family
| `Font_Size
| `Font_Size_Adjust
| `Font_Stretch
| `Font_Style
| `Font_Variant
| `Font_Weight
| `Glyph_Orientation_Horizontal
| `Glyph_Orientation_Vertical
| `Height
| `Id
| `Image_Rendering
| `Kerning
| `Letter_Spacing
| `Lighting_Color
| `Marker_End
| `Marker_Mid
| `Marker_Start
| `Mask
| `OnActivate
| `OnClick
| `OnFocusIn
| `OnFocusOut
| `OnLoad
| `OnMouseDown
| `OnMouseMove
| `OnMouseOut
| `OnMouseOver
| `OnMouseUp
| `Opacity
| `Overflow
| `Pointer_Events
| `RequiredExtensions
| `RequiredFeatures
| `Shape_Rendering
| `Stop_Color
| `Stop_Opacity
| `Stroke
| `Stroke_Dasharray
| `Stroke_Dashoffset
| `Stroke_Linecap
| `Stroke_Linejoin
| `Stroke_Miterlimit
| `Stroke_Opacity
| `Stroke_Width
| `Style
| `SystemLanguage
| `Text_Anchor
| `Text_Decoration
| `Text_Rendering
| `Transform
| `Unicode_Bidi
| `Visibility
| `Width
| `Word_Spacing
| `Writing_Mode
| `X
| `Xml_base
| `Xml_lang
| `Xml_space
| `Y ]