|
Lines 56-68
enum PaintPhase {
a/Source/WebCore/rendering/PaintPhase.h_sec1
|
| 56 |
enum PaintBehaviorFlags { |
56 |
enum PaintBehaviorFlags { |
| 57 |
PaintBehaviorNormal = 0, |
57 |
PaintBehaviorNormal = 0, |
| 58 |
PaintBehaviorSelectionOnly = 1 << 0, |
58 |
PaintBehaviorSelectionOnly = 1 << 0, |
| 59 |
PaintBehaviorForceBlackText = 1 << 1, |
59 |
PaintBehaviorSkipSelectionHighlight = 1 << 1, |
| 60 |
PaintBehaviorForceWhiteText = 1 << 2, |
60 |
PaintBehaviorForceBlackText = 1 << 2, |
| 61 |
PaintBehaviorFlattenCompositingLayers = 1 << 3, |
61 |
PaintBehaviorForceWhiteText = 1 << 3, |
| 62 |
PaintBehaviorRenderingSVGMask = 1 << 4, |
62 |
PaintBehaviorFlattenCompositingLayers = 1 << 4, |
| 63 |
PaintBehaviorSkipRootBackground = 1 << 5, |
63 |
PaintBehaviorRenderingSVGMask = 1 << 5, |
| 64 |
PaintBehaviorRootBackgroundOnly = 1 << 6, |
64 |
PaintBehaviorSkipRootBackground = 1 << 6, |
| 65 |
PaintBehaviorSelectionAndBackgroundsOnly = 1 << 7, |
65 |
PaintBehaviorRootBackgroundOnly = 1 << 7, |
|
|
66 |
PaintBehaviorSelectionAndBackgroundsOnly = 1 << 8, |
| 66 |
}; |
67 |
}; |
| 67 |
|
68 |
|
| 68 |
typedef unsigned PaintBehavior; |
69 |
typedef unsigned PaintBehavior; |