/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* vim: set ts=2 sw=2 sts=2 et: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* List of SVG presentational attributes in the SVG 1.1 spec, for use in mochitests. (These are the attributes that are mapped to CSS properties) */ var gMappedAttrList = { // NOTE: The list here should match the MappedAttributeEntry arrays in // nsSVGElement.cpp // PresentationAttributes-FillStroke fill: new AdditiveAttribute("fill", "XML", "rect"), fill_opacity: new AdditiveAttribute("fill-opacity", "XML", "rect"), fill_rule: new NonAdditiveAttribute("fill-rule", "XML", "rect"), stroke: new AdditiveAttribute("stroke", "XML", "rect"), stroke_dasharray: new NonAdditiveAttribute("stroke-dasharray", "XML", "rect"), stroke_dashoffset: new AdditiveAttribute("stroke-dashoffset", "XML", "rect"), stroke_linecap: new NonAdditiveAttribute("stroke-linecap", "XML", "rect"), stroke_linejoin: new NonAdditiveAttribute("stroke-linejoin", "XML", "rect"), stroke_miterlimit: new AdditiveAttribute("stroke-miterlimit", "XML", "rect"), stroke_opacity: new AdditiveAttribute("stroke-opacity", "XML", "rect"), stroke_width: new AdditiveAttribute("stroke-width", "XML", "rect"), // PresentationAttributes-Graphics clip_path: new NonAdditiveAttribute("clip-path", "XML", "rect"), clip_rule: new NonAdditiveAttribute("clip-rule", "XML", "circle"), color_interpolation: new NonAdditiveAttribute("color-interpolation", "XML", "rect"), cursor: new NonAdditiveAttribute("cursor", "XML", "rect"), display: new NonAdditiveAttribute("display", "XML", "rect"), filter: new NonAdditiveAttribute("filter", "XML", "rect"), image_rendering: NonAdditiveAttribute("image-rendering", "XML", "image"), mask: new NonAdditiveAttribute("mask", "XML", "line"), pointer_events: new NonAdditiveAttribute("pointer-events", "XML", "rect"), shape_rendering: new NonAdditiveAttribute("shape-rendering", "XML", "rect"), text_rendering: new NonAdditiveAttribute("text-rendering", "XML", "text"), visibility: new NonAdditiveAttribute("visibility", "XML", "rect"), // PresentationAttributes-TextContentElements // SKIP 'alignment-baseline' property: animatable but not supported by Mozilla // SKIP 'baseline-shift' property: animatable but not supported by Mozilla direction: new NonAnimatableAttribute("direction", "XML", "text"), dominant_baseline: new NonAdditiveAttribute("dominant-baseline", "XML", "text"), glyph_orientation_horizontal: // NOTE: Not supported by Mozilla, but explicitly non-animatable NonAnimatableAttribute("glyph-orientation-horizontal", "XML", "text"), glyph_orientation_vertical: // NOTE: Not supported by Mozilla, but explicitly non-animatable NonAnimatableAttribute("glyph-orientation-horizontal", "XML", "text"), // SKIP 'kerning' property: animatable but not supported by Mozilla letter_spacing: new AdditiveAttribute("letter-spacing", "XML", "text"), text_anchor: new NonAdditiveAttribute("text-anchor", "XML", "text"), text_decoration: new NonAdditiveAttribute("text-decoration", "XML", "text"), unicode_bidi: new NonAnimatableAttribute("unicode-bidi", "XML", "text"), word_spacing: new AdditiveAttribute("word-spacing", "XML", "text"), // PresentationAttributes-FontSpecification font_family: new NonAdditiveAttribute("font-family", "XML", "text"), font_size: new AdditiveAttribute("font-size", "XML", "text"), font_size_adjust: new NonAdditiveAttribute("font-size-adjust", "XML", "text"), font_stretch: new NonAdditiveAttribute("font-stretch", "XML", "text"), font_style: new NonAdditiveAttribute("font-style", "XML", "text"), font_variant: new NonAdditiveAttribute("font-variant", "XML", "text"), font_weight: new NonAdditiveAttribute("font-weight", "XML", "text"), // PresentationAttributes-GradientStop stop_color: new AdditiveAttribute("stop-color", "XML", "stop"), stop_opacity: new AdditiveAttribute("stop-opacity", "XML", "stop"), // PresentationAttributes-Viewports overflow: new NonAdditiveAttribute("overflow", "XML", "marker"), clip: new AdditiveAttribute("clip", "XML", "marker"), // PresentationAttributes-Makers marker_end: new NonAdditiveAttribute("marker-end", "XML", "line"), marker_mid: new NonAdditiveAttribute("marker-mid", "XML", "line"), marker_start: new NonAdditiveAttribute("marker-start", "XML", "line"), // PresentationAttributes-Color color: new AdditiveAttribute("color", "XML", "rect"), // PresentationAttributes-Filters color_interpolation_filters: new NonAdditiveAttribute("color-interpolation-filters", "XML", "feFlood"), // PresentationAttributes-feFlood flood_color: new AdditiveAttribute("flood-color", "XML", "feFlood"), flood_opacity: new AdditiveAttribute("flood-opacity", "XML", "feFlood"), // PresentationAttributes-LightingEffects lighting_color: new AdditiveAttribute("lighting-color", "XML", "feDiffuseLighting"), }; // Utility method to copy a list of TestcaseBundle objects for CSS properties // into a list of TestcaseBundles for the corresponding mapped attributes. function convertCSSBundlesToMappedAttr(bundleList) { // Create mapping of property names to the corresponding // mapped-attribute object in gMappedAttrList. var propertyNameToMappedAttr = {}; for (attributeLabel in gMappedAttrList) { var propName = gMappedAttrList[attributeLabel].attrName; propertyNameToMappedAttr[propName] = gMappedAttrList[attributeLabel]; } var convertedBundles = []; for (var bundleIdx in bundleList) { var origBundle = bundleList[bundleIdx]; var propName = origBundle.animatedAttribute.attrName; if (propertyNameToMappedAttr[propName]) { // There's a mapped attribute by this name! Duplicate the TestcaseBundle, // using the Mapped Attribute instead of the CSS Property. is(origBundle.animatedAttribute.attrType, "CSS", "expecting to be converting from CSS to XML"); convertedBundles.push( new TestcaseBundle(propertyNameToMappedAttr[propName], origBundle.testcaseList, origBundle.skipReason)); } } return convertedBundles; }