diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2017-08-17 20:27:14 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-12 08:39:15 +0100 |
commit | b736f53a13af48de08026b7c7e64275122af66e2 (patch) | |
tree | 54c20be9b96d7085973469c12332f43839d82f88 /dom/svg/SVGGradientElement.h | |
parent | 4577efd50f8361ffa787d7fcba5f5894438f826c (diff) | |
download | UXP-b736f53a13af48de08026b7c7e64275122af66e2.tar UXP-b736f53a13af48de08026b7c7e64275122af66e2.tar.gz UXP-b736f53a13af48de08026b7c7e64275122af66e2.tar.lz UXP-b736f53a13af48de08026b7c7e64275122af66e2.tar.xz UXP-b736f53a13af48de08026b7c7e64275122af66e2.zip |
SVG - support radialGradient fr attribute
Diffstat (limited to 'dom/svg/SVGGradientElement.h')
-rw-r--r-- | dom/svg/SVGGradientElement.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dom/svg/SVGGradientElement.h b/dom/svg/SVGGradientElement.h index 7b2c6b220..ce9f3b4b1 100644 --- a/dom/svg/SVGGradientElement.h +++ b/dom/svg/SVGGradientElement.h @@ -139,13 +139,14 @@ public: already_AddRefed<SVGAnimatedLength> R(); already_AddRefed<SVGAnimatedLength> Fx(); already_AddRefed<SVGAnimatedLength> Fy(); + already_AddRefed<SVGAnimatedLength> Fr(); protected: virtual LengthAttributesInfo GetLengthInfo() override; - enum { ATTR_CX, ATTR_CY, ATTR_R, ATTR_FX, ATTR_FY }; - nsSVGLength2 mLengthAttributes[5]; - static LengthInfo sLengthInfo[5]; + enum { ATTR_CX, ATTR_CY, ATTR_R, ATTR_FX, ATTR_FY, ATTR_FR }; + nsSVGLength2 mLengthAttributes[6]; + static LengthInfo sLengthInfo[6]; }; } // namespace dom |