Index: Source/core/rendering/style/RenderStyleConstants.h |
=================================================================== |
--- Source/core/rendering/style/RenderStyleConstants.h (revision 169401) |
+++ Source/core/rendering/style/RenderStyleConstants.h (working copy) |
@@ -56,6 +56,7 @@ |
// (9) StyleDifferenceLayout - A full layout is required. |
enum StyleDifference { |
StyleDifferenceEqual, |
+ StyleDifferenceMinRecompositeLayer, |
StyleDifferenceRecompositeLayer, |
Ian Vollick
2014/03/18 11:59:16
Rather than adding "MinRecompositeLayer", could we
|
StyleDifferenceRepaint, |
StyleDifferenceRepaintIfTextOrColorChange, |
@@ -74,7 +75,9 @@ |
ContextSensitivePropertyNone = 0, |
ContextSensitivePropertyTransform = (1 << 0), |
ContextSensitivePropertyOpacity = (1 << 1), |
- ContextSensitivePropertyFilter = (1 << 2) |
+ ContextSensitivePropertyFilter = (1 << 2), |
+ ContextSensitivePropertyTransform3D = (1 << 3) |
Ian Vollick
2014/03/18 11:59:16
I thought that transform, opacity and filter were
yaojie.yan
2014/03/20 07:43:19
Yes, I will address them in the following up patch
|
+ |
}; |
// Static pseudo styles. Dynamic ones are produced on the fly. |