|
| 1 | +[Exposed=Window] |
| 2 | +interface SVGMarkerElement : SVGElement { |
| 3 | + |
| 4 | + // Marker Unit Types |
| 5 | + const unsigned short SVG_MARKERUNITS_UNKNOWN = 0; |
| 6 | + const unsigned short SVG_MARKERUNITS_USERSPACEONUSE = 1; |
| 7 | + const unsigned short SVG_MARKERUNITS_STROKEWIDTH = 2; |
| 8 | + |
| 9 | + // Marker Orientation Types |
| 10 | + const unsigned short SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 11 | + const unsigned short SVG_MARKER_ORIENT_AUTO = 1; |
| 12 | + const unsigned short SVG_MARKER_ORIENT_ANGLE = 2; |
| 13 | + |
| 14 | + [SameObject] readonly attribute SVGAnimatedLength refX; |
| 15 | + [SameObject] readonly attribute SVGAnimatedLength refY; |
| 16 | + [SameObject] readonly attribute SVGAnimatedEnumeration markerUnits; |
| 17 | + [SameObject] readonly attribute SVGAnimatedLength markerWidth; |
| 18 | + [SameObject] readonly attribute SVGAnimatedLength markerHeight; |
| 19 | + [SameObject] readonly attribute SVGAnimatedEnumeration orientType; |
| 20 | + [SameObject] readonly attribute SVGAnimatedAngle orientAngle; |
| 21 | + attribute DOMString orient; |
| 22 | + |
| 23 | + void setOrientToAuto(); |
| 24 | + void setOrientToAngle(SVGAngle angle); |
| 25 | +}; |
| 26 | + |
| 27 | +SVGMarkerElement includes SVGFitToViewBox; |
| 28 | + |
| 29 | +partial interface CSSStyleDeclaration { |
| 30 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString fill; |
| 31 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString fillRule; |
| 32 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString fillOpacity; |
| 33 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString stroke; |
| 34 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeOpacity; |
| 35 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeWidth; |
| 36 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeLinecap; |
| 37 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeLinejoin; |
| 38 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeMiterlimit; |
| 39 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeDasharray; |
| 40 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString strokeDashoffset; |
| 41 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString markerStart; |
| 42 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString markerMid; |
| 43 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString markerEnd; |
| 44 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString marker; |
| 45 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString paintOrder; |
| 46 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString colorInterpolation; |
| 47 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString colorRendering; |
| 48 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString shapeRendering; |
| 49 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textRendering; |
| 50 | + [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString imageRendering; |
| 51 | +}; |
0 commit comments