Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Unified Diff: third_party/WebKit/Source/core/svg/SVGGradientElement.idl

Issue 1514853002: Remove --disable-svg1dom runtime flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGGradientElement.idl
diff --git a/third_party/WebKit/Source/core/svg/SVGGradientElement.idl b/third_party/WebKit/Source/core/svg/SVGGradientElement.idl
index f504ae91f5eceb79cada22cf4d48597ba8326149..5d775141c2b3c5d6fd93a67560660d2b53859c3b 100644
--- a/third_party/WebKit/Source/core/svg/SVGGradientElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGGradientElement.idl
@@ -29,14 +29,14 @@
DoNotCheckConstants
] interface SVGGradientElement : SVGElement {
// Spread Method Types
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_PAD = 1;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_REFLECT = 2;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_REPEAT = 3;
+ [MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0;
+ [MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_PAD = 1;
+ [MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_REFLECT = 2;
+ [MeasureAs=SVG1DOMPaintServer] const unsigned short SVG_SPREADMETHOD_REPEAT = 3;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] readonly attribute SVGAnimatedEnumeration gradientUnits;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] readonly attribute SVGAnimatedTransformList gradientTransform;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOMPaintServer] readonly attribute SVGAnimatedEnumeration spreadMethod;
+ [MeasureAs=SVG1DOMPaintServer] readonly attribute SVGAnimatedEnumeration gradientUnits;
+ [MeasureAs=SVG1DOMPaintServer] readonly attribute SVGAnimatedTransformList gradientTransform;
+ [MeasureAs=SVG1DOMPaintServer] readonly attribute SVGAnimatedEnumeration spreadMethod;
};
SVGGradientElement implements SVGURIReference;

Powered by Google App Engine
This is Rietveld 408576698