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

Unified Diff: third_party/WebKit/Source/core/svg/SVGMarkerElement.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/SVGMarkerElement.idl
diff --git a/third_party/WebKit/Source/core/svg/SVGMarkerElement.idl b/third_party/WebKit/Source/core/svg/SVGMarkerElement.idl
index 09eb8265c5b622e42aa83cdeff499e91af176aca..777a1d5c15205510ce32a1c00f7bbcbfcdb121e3 100644
--- a/third_party/WebKit/Source/core/svg/SVGMarkerElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGMarkerElement.idl
@@ -28,26 +28,26 @@
interface SVGMarkerElement : SVGElement {
// Marker Unit Types
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_MARKERUNITS_UNKNOWN = 0;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_MARKERUNITS_USERSPACEONUSE = 1;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_MARKERUNITS_STROKEWIDTH = 2;
+ [MeasureAs=SVG1DOM] const unsigned short SVG_MARKERUNITS_UNKNOWN = 0;
+ [MeasureAs=SVG1DOM] const unsigned short SVG_MARKERUNITS_USERSPACEONUSE = 1;
+ [MeasureAs=SVG1DOM] const unsigned short SVG_MARKERUNITS_STROKEWIDTH = 2;
// Marker Orientation Types
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_MARKER_ORIENT_UNKNOWN = 0;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_MARKER_ORIENT_AUTO = 1;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_MARKER_ORIENT_ANGLE = 2;
+ [MeasureAs=SVG1DOM] const unsigned short SVG_MARKER_ORIENT_UNKNOWN = 0;
+ [MeasureAs=SVG1DOM] const unsigned short SVG_MARKER_ORIENT_AUTO = 1;
+ [MeasureAs=SVG1DOM] const unsigned short SVG_MARKER_ORIENT_ANGLE = 2;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength refX;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength refY;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration markerUnits;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength markerWidth;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength markerHeight;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration orientType;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedAngle orientAngle;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength refX;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength refY;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration markerUnits;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength markerWidth;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength markerHeight;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration orientType;
+ [MeasureAs=SVG1DOM] readonly attribute SVGAnimatedAngle orientAngle;
// attribute DOMString orient;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void setOrientToAuto();
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void setOrientToAngle(SVGAngle angle);
+ [MeasureAs=SVG1DOM] void setOrientToAuto();
+ [MeasureAs=SVG1DOM] void setOrientToAngle(SVGAngle angle);
};
SVGMarkerElement implements SVGFitToViewBox;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGLinearGradientElement.idl ('k') | third_party/WebKit/Source/core/svg/SVGMaskElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698