#ifdef _SVG /* mapping table of SVG elements */ #include "SVG.h" static ElemMapping SVGElemMappingTable[] = { /* This table MUST be in alphabetical order and in lower case */ {"a", SPACE, SVG_EL_a, L_OtherValue, FALSE}, {"altGlyph", SPACE, SVG_EL_altGlyph, L_OtherValue, FALSE}, {"altGlyphDef", SPACE, SVG_EL_altGlyphDef, L_OtherValue, FALSE}, {"altGlyphItem", SPACE, SVG_EL_altGlyphItem, L_OtherValue, FALSE}, {"animate", SPACE, SVG_EL_animate, L_OtherValue, FALSE}, {"animateColor", SPACE, SVG_EL_animateColor, L_OtherValue, FALSE}, {"animateMotion", SPACE, SVG_EL_animateMotion, L_OtherValue, FALSE}, {"animateTransform", SPACE, SVG_EL_animateTransform, L_OtherValue, FALSE}, {"c", SPACE, SVG_EL_TEXT_UNIT, L_OtherValue, TRUE}, {"cdata", SPACE, SVG_EL_CDATA, L_OtherValue, FALSE}, {"cdata_line", SPACE, SVG_EL_CDATA_line, L_OtherValue, FALSE}, {"circle", SPACE, SVG_EL_circle, L_OtherValue, FALSE}, {"clipPath", SPACE, SVG_EL_clipPath, L_OtherValue, FALSE}, {"color-profile", SPACE, SVG_EL_color_profile, L_OtherValue, FALSE}, {"defs", SPACE, SVG_EL_defs, L_OtherValue, FALSE}, {"desc", SPACE, SVG_EL_desc, L_OtherValue, FALSE}, {"doctype", SPACE, SVG_EL_DOCTYPE, L_OtherValue, FALSE}, {"doctype_line", SPACE, SVG_EL_DOCTYPE_line, L_OtherValue, FALSE}, {"ellipse", SPACE, SVG_EL_ellipse, L_OtherValue, FALSE}, {"foreignObject", SPACE, SVG_EL_foreignObject, L_OtherValue, FALSE}, {"g", SPACE, SVG_EL_g, L_OtherValue, FALSE}, {"glyphRef", SPACE, SVG_EL_glyphRef, L_OtherValue, FALSE}, {"image", SPACE, SVG_EL_image, L_OtherValue, FALSE}, {"line", SPACE, SVG_EL_line_, L_OtherValue, FALSE}, {"linearGradient", SPACE, SVG_EL_linearGradient, L_OtherValue, FALSE}, {"marker", SPACE, SVG_EL_marker, L_OtherValue, FALSE}, {"mask", SPACE, SVG_EL_mask, L_OtherValue, FALSE}, {"metadata", SPACE, SVG_EL_metadata, L_OtherValue, FALSE}, {"mpath", SPACE, SVG_EL_mpath, L_OtherValue, FALSE}, {"path", SPACE, SVG_EL_path, L_OtherValue, FALSE}, {"pattern", SPACE, SVG_EL_pattern, L_OtherValue, FALSE}, {"polygon", SPACE, SVG_EL_polygon, L_OtherValue, FALSE}, {"polyline", SPACE, SVG_EL_polyline, L_OtherValue, FALSE}, {"rect", SPACE, SVG_EL_rect, L_OtherValue, FALSE}, {"radialGradient", SPACE, SVG_EL_radialGradient, L_OtherValue, FALSE}, {"script", SPACE, SVG_EL_script_, L_OtherValue, FALSE}, {"set", SPACE, SVG_EL_set_, L_OtherValue, FALSE}, {"stop", SPACE, SVG_EL_stop, L_OtherValue, FALSE}, {"style", SPACE, SVG_EL_style__, L_OtherValue, FALSE}, {"svg", SPACE, SVG_EL_SVG, L_OtherValue, FALSE}, {"switch", SPACE, SVG_EL_switch, L_OtherValue, FALSE}, {"symbol", SPACE, SVG_EL_symbol_, L_OtherValue, FALSE}, {"text", SPACE, SVG_EL_text_, L_OtherValue, FALSE}, {"textPath", SPACE, SVG_EL_textPath, L_OtherValue, FALSE}, {"title", SPACE, SVG_EL_title, L_OtherValue, FALSE}, {"tref", SPACE, SVG_EL_tref, L_OtherValue, TRUE}, {"tspan", SPACE, SVG_EL_tspan, L_OtherValue, TRUE}, {"use", SPACE, SVG_EL_use_, L_OtherValue, FALSE}, {"xmlcomment", SPACE, SVG_EL_XMLcomment, L_OtherValue, FALSE}, {"xmlcomment_line", SPACE, SVG_EL_XMLcomment_line, L_OtherValue, FALSE}, {"xmlpi", SPACE, SVG_EL_XMLPI, L_OtherValue, FALSE}, {"xmlpi_line", SPACE, SVG_EL_XMLPI_line, L_OtherValue, FALSE}, {"", SPACE, 0, L_OtherValue, FALSE} /* Last entry. Mandatory */ }; static AttributeMapping SVGAttributeMappingTable[] = { /* The first entry MUST be unknown_attr */ /* The rest of this table MUST be in alphabetical order */ {"unknown_attr", "", 'A', SVG_ATTR_Unknown_attribute, L_OtherValue}, {"accumulate", "", 'A', SVG_ATTR_accumulate, L_OtherValue}, {"additive", "", 'A', SVG_ATTR_additive, L_OtherValue}, {"attributeName", "", 'A', SVG_ATTR_attributeName_, L_OtherValue}, {"attributeType", "", 'A', SVG_ATTR_attributeType, L_OtherValue}, {"baseline-shift", "", 'A', SVG_ATTR_baseline_shift, L_OtherValue}, {"baseProfile", "", 'A', SVG_ATTR_baseProfile, L_OtherValue}, {"begin", "", 'A', SVG_ATTR_begin_, L_OtherValue}, {"by", "", 'A', SVG_ATTR_by, L_OtherValue}, {"calcMode", "", 'A', SVG_ATTR_calcMode, L_OtherValue}, {"class", "", 'A', SVG_ATTR_class, L_OtherValue}, {"clipPathUnits", "", 'A', SVG_ATTR_clipPathUnits, L_OtherValue}, {"cx", "", 'A', SVG_ATTR_cx, L_OtherValue}, {"cy", "", 'A', SVG_ATTR_cy, L_OtherValue}, {"d", "", 'A', SVG_ATTR_d, L_OtherValue}, {"direction", "", 'A', SVG_ATTR_direction_, L_OtherValue}, {"dur", "", 'A', SVG_ATTR_dur, L_OtherValue}, {"dx", "", 'A', SVG_ATTR_dx, L_OtherValue}, {"dy", "", 'A', SVG_ATTR_dy, L_OtherValue}, {"end", "", 'A', SVG_ATTR_end_, L_OtherValue}, {"externalResourcesRequired", "", 'A', SVG_ATTR_externalResourcesRequired, L_OtherValue}, {"fill", "animate", 'A', SVG_ATTR_fill_, L_OtherValue}, {"fill", "animateColor", 'A', SVG_ATTR_fill_, L_OtherValue}, {"fill", "animateMotion", 'A', SVG_ATTR_fill_, L_OtherValue}, {"fill", "animateTransform", 'A', SVG_ATTR_fill_, L_OtherValue}, {"fill", "set", 'A', SVG_ATTR_fill_, L_OtherValue}, {"fill", "", 'A', SVG_ATTR_fill, L_OtherValue}, {"fill-opacity", "", 'A', SVG_ATTR_fill_opacity, L_OtherValue}, {"font-family", "", 'A', SVG_ATTR_font_family, L_OtherValue}, {"font-size", "", 'A', SVG_ATTR_font_size, L_OtherValue}, {"font-style", "", 'A', SVG_ATTR_font_style, L_OtherValue}, {"font-variant", "", 'A', SVG_ATTR_font_variant, L_OtherValue}, {"font-weight", "", 'A', SVG_ATTR_font_weight, L_OtherValue}, {"format", "", 'A', SVG_ATTR_format, L_OtherValue}, {"from", "", 'A', SVG_ATTR_from, L_OtherValue}, {"fx", "", 'A', SVG_ATTR_fx, L_OtherValue}, {"fy", "", 'A', SVG_ATTR_fy, L_OtherValue}, {"glyphRef", "", 'A', SVG_ATTR_glyphRef_, L_OtherValue}, {"gradientTransform", "", 'A', SVG_ATTR_gradientTransform, L_OtherValue}, {"gradientUnits", "", 'A', SVG_ATTR_gradientUnits, L_OtherValue}, {"height", "", 'A', SVG_ATTR_height_, L_OtherValue}, {"id", "", 'A', SVG_ATTR_id, L_OtherValue}, {"keyPoints", "", 'A', SVG_ATTR_keyPoints, L_OtherValue}, {"keySplines", "", 'A', SVG_ATTR_keySplines, L_OtherValue}, {"keyTimes", "", 'A', SVG_ATTR_keyTimes, L_OtherValue}, {"lang", "", 'A', SVG_ATTR_Language, L_OtherValue}, {"lengthAdjust", "", 'A', SVG_ATTR_lengthAdjust, L_OtherValue}, {"local", "", 'A', SVG_ATTR_local, L_OtherValue}, {"markerHeight", "", 'A', SVG_ATTR_markerHeight, L_OtherValue}, {"markerUnits", "", 'A', SVG_ATTR_markerUnits, L_OtherValue}, {"markerWidth", "", 'A', SVG_ATTR_markerWidth, L_OtherValue}, {"maskContentUnits", "", 'A', SVG_ATTR_maskContentUnits, L_OtherValue}, {"maskUnits", "", 'A', SVG_ATTR_maskUnits, L_OtherValue}, {"max", "", 'A', SVG_ATTR_max_, L_OtherValue}, {"media", "", 'A', SVG_ATTR_media, L_OtherValue}, {"method", "", 'A', SVG_ATTR_method, L_OtherValue}, {"min", "", 'A', SVG_ATTR_min_, L_OtherValue}, {"name", "", 'A', SVG_ATTR_name, L_OtherValue}, {"offset", "", 'A', SVG_ATTR_offset, L_OtherValue}, {"onbegin", "", 'A', SVG_ATTR_onbegin, L_OtherValue}, {"onend", "", 'A', SVG_ATTR_onend, L_OtherValue}, {"onrepeat", "", 'A', SVG_ATTR_onrepeat, L_OtherValue}, {"opacity", "", 'A', SVG_ATTR_opacity_, L_OtherValue}, {"orient", "", 'A', SVG_ATTR_orient, L_OtherValue}, {"origin", "", 'A', SVG_ATTR_origin, L_OtherValue}, {"path", "", 'A', SVG_ATTR_path_, L_OtherValue}, {"patternContentUnits", "", 'A', SVG_ATTR_patternContentUnits, L_OtherValue}, {"patternTransform", "", 'A', SVG_ATTR_patternTransform, L_OtherValue}, {"patternUnits", "", 'A', SVG_ATTR_patternUnits, L_OtherValue}, {"pathLength", "", 'A', SVG_ATTR_pathLength, L_OtherValue}, {"points", "", 'A', SVG_ATTR_points, L_OtherValue}, {"preserveAspectRatio", "", 'A', SVG_ATTR_preserveAspectRatio, L_OtherValue}, {"r", "", 'A', SVG_ATTR_r, L_OtherValue}, {"refX", "", 'A', SVG_ATTR_refX, L_OtherValue}, {"refY", "", 'A', SVG_ATTR_refY, L_OtherValue}, {"rendering-intent", "", 'A', SVG_ATTR_rendering_intent, L_OtherValue}, {"repeatCount", "", 'A', SVG_ATTR_repeatCount, L_OtherValue}, {"repeatDur", "", 'A', SVG_ATTR_repeatDur, L_OtherValue}, {"requiredExtensions", "", 'A', SVG_ATTR_requiredExtensions, L_OtherValue}, {"requiredFeatures", "", 'A', SVG_ATTR_requiredFeatures, L_OtherValue}, {"restart", "", 'A', SVG_ATTR_restart, L_OtherValue}, {"rotate", "", 'A', SVG_ATTR_rotate, L_OtherValue}, {"rx", "", 'A', SVG_ATTR_rx, L_OtherValue}, {"ry", "", 'A', SVG_ATTR_ry, L_OtherValue}, {"spacing", "", 'A', SVG_ATTR_spacing, L_OtherValue}, {"spreadMethod", "", 'A', SVG_ATTR_spreadMethod, L_OtherValue}, {"startOffset", "", 'A', SVG_ATTR_startOffset, L_OtherValue}, {"stroke", "", 'A', SVG_ATTR_stroke, L_OtherValue}, {"stroke-width", "", 'A', SVG_ATTR_stroke_width, L_OtherValue}, {"stroke-opacity", "", 'A', SVG_ATTR_stroke_opacity, L_OtherValue}, {"stop-color", "", 'A', SVG_ATTR_stop_color, L_OtherValue}, {"stop-opacity", "", 'A', SVG_ATTR_stop_opacity, L_OtherValue}, {"style", "", 'A', SVG_ATTR_style_, L_OtherValue}, {"systemLanguage", "", 'A', SVG_ATTR_systemLanguage, L_OtherValue}, {"target", "", 'A', SVG_ATTR_target_, L_OtherValue}, {"text-anchor", "", 'A', SVG_ATTR_text_anchor, L_OtherValue}, {"text-decoration", "", 'A', SVG_ATTR_text_decoration, L_OtherValue}, {"textLength", "", 'A', SVG_ATTR_textLength, L_OtherValue}, {"title", "", 'A', SVG_ATTR_title_, L_OtherValue}, {"to", "", 'A', SVG_ATTR_to_, L_OtherValue}, {"transform", "", 'A', SVG_ATTR_transform, L_OtherValue}, {"type", "animateTransform", 'A', SVG_ATTR_type_, L_OtherValue}, {"type", "", 'A', SVG_ATTR_type, L_OtherValue}, {"unicode-bidi", "", 'A', SVG_ATTR_unicode_bidi, L_OtherValue}, {"values", "", 'A', SVG_ATTR_values, L_OtherValue}, {"version", "", 'A', SVG_ATTR_version, L_OtherValue}, {"viewBox", "", 'A', SVG_ATTR_viewBox, L_OtherValue}, {"width", "", 'A', SVG_ATTR_width_, L_OtherValue}, {"writing-mode", "", 'A', SVG_ATTR_writing_mode, L_OtherValue}, {"x", "", 'A', SVG_ATTR_x, L_OtherValue}, {"x1", "", 'A', SVG_ATTR_x1, L_OtherValue}, {"x2", "", 'A', SVG_ATTR_x2, L_OtherValue}, {"xlink:href", "", 'A', SVG_ATTR_xlink_href, L_OtherValue}, {"xml:space", "", 'A', SVG_ATTR_xml_space, L_OtherValue}, {"y", "", 'A', SVG_ATTR_y, L_OtherValue}, {"y1", "", 'A', SVG_ATTR_y1, L_OtherValue}, {"y2", "", 'A', SVG_ATTR_y2, L_OtherValue}, {"zzghost", "", 'A', SVG_ATTR_Ghost_restruct, L_OtherValue}, {"", "", EOS, 0, L_OtherValue} /* Last entry. Mandatory */ }; /* mapping table of attribute values */ static AttrValueMapping SVGAttrValueMappingTable[] = { {SVG_ATTR_xml_space, "default", SVG_ATTR_xml_space_VAL_xml_space_default}, {SVG_ATTR_xml_space, "preserve", SVG_ATTR_xml_space_VAL_xml_space_preserve}, {SVG_ATTR_externalResourcesRequired, "false", SVG_ATTR_externalResourcesRequired_VAL_false}, {SVG_ATTR_externalResourcesRequired, "true", SVG_ATTR_externalResourcesRequired_VAL_true}, {SVG_ATTR_font_style, "inherit", SVG_ATTR_font_style_VAL_inherit}, {SVG_ATTR_font_style, "italic", SVG_ATTR_font_style_VAL_italic}, {SVG_ATTR_font_style, "normal", SVG_ATTR_font_style_VAL_normal_}, {SVG_ATTR_font_style, "oblique", SVG_ATTR_font_style_VAL_oblique_}, {SVG_ATTR_font_variant, "inherit", SVG_ATTR_font_variant_VAL_inherit}, {SVG_ATTR_font_variant, "normal", SVG_ATTR_font_variant_VAL_normal_}, {SVG_ATTR_font_variant, "small-caps", SVG_ATTR_font_variant_VAL_small_caps}, {SVG_ATTR_font_weight, "100", SVG_ATTR_font_weight_VAL_w100}, {SVG_ATTR_font_weight, "200", SVG_ATTR_font_weight_VAL_w200}, {SVG_ATTR_font_weight, "300", SVG_ATTR_font_weight_VAL_w300}, {SVG_ATTR_font_weight, "400", SVG_ATTR_font_weight_VAL_w400}, {SVG_ATTR_font_weight, "500", SVG_ATTR_font_weight_VAL_w500}, {SVG_ATTR_font_weight, "600", SVG_ATTR_font_weight_VAL_w600}, {SVG_ATTR_font_weight, "700", SVG_ATTR_font_weight_VAL_w700}, {SVG_ATTR_font_weight, "800", SVG_ATTR_font_weight_VAL_w800}, {SVG_ATTR_font_weight, "900", SVG_ATTR_font_weight_VAL_w900}, {SVG_ATTR_font_weight, "bold", SVG_ATTR_font_weight_VAL_bold_}, {SVG_ATTR_font_weight, "bolder", SVG_ATTR_font_weight_VAL_bolder}, {SVG_ATTR_font_weight, "inherit", SVG_ATTR_font_weight_VAL_inherit}, {SVG_ATTR_font_weight, "lighter", SVG_ATTR_font_weight_VAL_lighter}, {SVG_ATTR_font_weight, "normal", SVG_ATTR_font_weight_VAL_normal_}, {SVG_ATTR_direction_, "ltr", SVG_ATTR_direction__VAL_ltr_}, {SVG_ATTR_direction_, "rtl", SVG_ATTR_direction__VAL_rtl_}, {SVG_ATTR_direction_, "inherit", SVG_ATTR_direction__VAL_inherit}, {SVG_ATTR_text_anchor, "start", SVG_ATTR_text_anchor_VAL_start}, {SVG_ATTR_text_anchor, "middle", SVG_ATTR_text_anchor_VAL_middle}, {SVG_ATTR_text_anchor, "end", SVG_ATTR_text_anchor_VAL_end__}, {SVG_ATTR_text_anchor, "inherit", SVG_ATTR_text_anchor_VAL_inherit}, {SVG_ATTR_unicode_bidi, "normal", SVG_ATTR_unicode_bidi_VAL_normal_}, {SVG_ATTR_unicode_bidi, "embed", SVG_ATTR_unicode_bidi_VAL_embed_}, {SVG_ATTR_unicode_bidi, "bidi-override", SVG_ATTR_unicode_bidi_VAL_bidi_override}, {SVG_ATTR_unicode_bidi, "inherit", SVG_ATTR_unicode_bidi_VAL_inherit}, {SVG_ATTR_writing_mode, "lr-tb", SVG_ATTR_writing_mode_VAL_lr_tb}, {SVG_ATTR_writing_mode, "rl-tb", SVG_ATTR_writing_mode_VAL_rl_tb}, {SVG_ATTR_writing_mode, "tb-rl", SVG_ATTR_writing_mode_VAL_tb_rl}, {SVG_ATTR_writing_mode, "lr", SVG_ATTR_writing_mode_VAL_lr}, {SVG_ATTR_writing_mode, "rl", SVG_ATTR_writing_mode_VAL_rl}, {SVG_ATTR_writing_mode, "tb", SVG_ATTR_writing_mode_VAL_tb}, {SVG_ATTR_writing_mode, "inherit", SVG_ATTR_writing_mode_VAL_inherit}, {SVG_ATTR_lengthAdjust, "spacing", SVG_ATTR_lengthAdjust_VAL_spacing_}, {SVG_ATTR_lengthAdjust, "spacingAndGlyphs", SVG_ATTR_lengthAdjust_VAL_spacingAndGlyphs}, {SVG_ATTR_method, "align", SVG_ATTR_method_VAL_align}, {SVG_ATTR_method, "stretch", SVG_ATTR_method_VAL_stretch}, {SVG_ATTR_spacing, "auto", SVG_ATTR_spacing_VAL_auto}, {SVG_ATTR_spacing, "exact", SVG_ATTR_spacing_VAL_exact}, {SVG_ATTR_markerUnits, "strokeWidth", SVG_ATTR_markerUnits_VAL_strokeWidth}, {SVG_ATTR_markerUnits, "userSpaceOnUse", SVG_ATTR_markerUnits_VAL_userSpaceOnUse}, {SVG_ATTR_rendering_intent, "absolute-colorimetric", SVG_ATTR_rendering_intent_VAL_absolute_colorimetric}, {SVG_ATTR_rendering_intent, "auto", SVG_ATTR_rendering_intent_VAL_auto}, {SVG_ATTR_rendering_intent, "perceptual", SVG_ATTR_rendering_intent_VAL_perceptual}, {SVG_ATTR_rendering_intent, "relative-colorimetric", SVG_ATTR_rendering_intent_VAL_relative_colorimetric}, {SVG_ATTR_rendering_intent, "saturation", SVG_ATTR_rendering_intent_VAL_saturation}, {SVG_ATTR_gradientUnits, "objectBoundingBox", SVG_ATTR_gradientUnits_VAL_objectBoundingBox}, {SVG_ATTR_gradientUnits, "userSpaceOnUse", SVG_ATTR_gradientUnits_VAL_userSpaceOnUse}, {SVG_ATTR_spreadMethod, "pad", SVG_ATTR_spreadMethod_VAL_pad}, {SVG_ATTR_spreadMethod, "reflect", SVG_ATTR_spreadMethod_VAL_reflect}, {SVG_ATTR_spreadMethod, "repeat", SVG_ATTR_spreadMethod_VAL_repeat}, {SVG_ATTR_patternUnits, "objectBoundingBox", SVG_ATTR_patternUnits_VAL_objectBoundingBox}, {SVG_ATTR_patternUnits, "userSpaceOnUse", SVG_ATTR_patternUnits_VAL_userSpaceOnUse}, {SVG_ATTR_patternContentUnits, "objectBoundingBox", SVG_ATTR_patternContentUnits_VAL_objectBoundingBox}, {SVG_ATTR_patternContentUnits, "userSpaceOnUse", SVG_ATTR_patternContentUnits_VAL_userSpaceOnUse}, {SVG_ATTR_maskUnits, "objectBoundingBox", SVG_ATTR_maskUnits_VAL_objectBoundingBox}, {SVG_ATTR_maskUnits, "userSpaceOnUse", SVG_ATTR_maskUnits_VAL_userSpaceOnUse}, {SVG_ATTR_maskContentUnits, "objectBoundingBox", SVG_ATTR_maskContentUnits_VAL_objectBoundingBox}, {SVG_ATTR_maskContentUnits, "userSpaceOnUse", SVG_ATTR_maskContentUnits_VAL_userSpaceOnUse}, {SVG_ATTR_clipPathUnits, "objectBoundingBox", SVG_ATTR_clipPathUnits_VAL_objectBoundingBox}, {SVG_ATTR_clipPathUnits, "userSpaceOnUse", SVG_ATTR_clipPathUnits_VAL_userSpaceOnUse}, {SVG_ATTR_restart, "always", SVG_ATTR_restart_VAL_always}, {SVG_ATTR_restart, "never", SVG_ATTR_restart_VAL_never}, {SVG_ATTR_restart, "whenNotActive", SVG_ATTR_restart_VAL_whenNotActive}, {SVG_ATTR_fill_, "freeze", SVG_ATTR_fill__VAL_freeze}, {SVG_ATTR_fill_, "remove", SVG_ATTR_fill__VAL_remove_}, {SVG_ATTR_calcMode, "discrete", SVG_ATTR_calcMode_VAL_discrete}, {SVG_ATTR_calcMode, "linear", SVG_ATTR_calcMode_VAL_linear}, {SVG_ATTR_calcMode, "paced", SVG_ATTR_calcMode_VAL_paced}, {SVG_ATTR_calcMode, "spline", SVG_ATTR_calcMode_VAL_spline}, {SVG_ATTR_additive, "replace", SVG_ATTR_additive_VAL_replace}, {SVG_ATTR_additive, "sum", SVG_ATTR_additive_VAL_sum}, {SVG_ATTR_accumulate, "none", SVG_ATTR_accumulate_VAL_none_}, {SVG_ATTR_accumulate, "sum", SVG_ATTR_accumulate_VAL_sum}, {SVG_ATTR_type_, "rotate", SVG_ATTR_type__VAL_rotate_}, {SVG_ATTR_type_, "scale", SVG_ATTR_type__VAL_scale}, {SVG_ATTR_type_, "skewX", SVG_ATTR_type__VAL_skewX}, {SVG_ATTR_type_, "skewY", SVG_ATTR_type__VAL_skewY}, {SVG_ATTR_type_, "translate", SVG_ATTR_type__VAL_translate}, {0, "", 0} /* Last entry. Mandatory */ }; #else /* _SVG */ /* there is no mapping table of SVG elements */ static ElemMapping *SVGElemMappingTable = NULL; static AttributeMapping* SVGAttributeMappingTable = NULL; #endif /* _SVG */