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

Unified Diff: Source/core/rendering/style/SVGRenderStyleDefs.h

Issue 14907011: Support 'paint-order' from SVG2. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 months 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: Source/core/rendering/style/SVGRenderStyleDefs.h
diff --git a/Source/core/rendering/style/SVGRenderStyleDefs.h b/Source/core/rendering/style/SVGRenderStyleDefs.h
index b4c066805620b9c44d3afa85562321bb91171c23..2c64349126e5fdc5618c715262ac2152270b09dd 100644
--- a/Source/core/rendering/style/SVGRenderStyleDefs.h
+++ b/Source/core/rendering/style/SVGRenderStyleDefs.h
@@ -94,6 +94,26 @@ namespace WebCore {
MT_ALPHA
};
+ enum EPaintOrder {
pdr. 2013/05/03 17:58:29 The style checker will complain about these names
+ PO_NORMAL,
+ PO_FILL,
+ PO_STROKE,
+ PO_MARKERS,
+ // permutations
+ PO_FILL_STROKE,
+ PO_FILL_MARKERS,
+ PO_STROKE_FILL,
+ PO_STROKE_MARKERS,
+ PO_MARKERS_FILL,
+ PO_MARKERS_STROKE,
+ //PO_FILL_STROKE_MARKERS = PO_NORMAL
+ PO_FILL_MARKERS_STROKE,
+ PO_STROKE_MARKERS_FILL,
+ PO_STROKE_FILL_MARKERS,
+ PO_MARKERS_FILL_STROKE,
+ PO_MARKERS_STROKE_FILL
+ };
+
class CSSValue;
class CSSValueList;
class SVGPaint;

Powered by Google App Engine
This is Rietveld 408576698