~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/rendering/style/StyleRareNonInheritedData.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include "DataRef.h"
31
31
#include "FillLayer.h"
32
32
#include "NinePieceImage.h"
 
33
#include "StyleTransformData.h"
33
34
#include <wtf/OwnPtr.h>
34
35
#include <wtf/PassRefPtr.h>
35
36
#include <wtf/Vector.h>
69
70
 
70
71
    bool operator==(const StyleRareNonInheritedData&) const;
71
72
    bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this == o); }
72
 
 
 
73
 
 
74
    bool contentDataEquivalent(const StyleRareNonInheritedData& o) const;
73
75
    bool shadowDataEquivalent(const StyleRareNonInheritedData& o) const;
74
76
    bool reflectionDataEquivalent(const StyleRareNonInheritedData& o) const;
75
77
    bool animationDataEquivalent(const StyleRareNonInheritedData&) const;
96
98
    unsigned matchNearestMailBlockquoteColor : 1; // EMatchNearestMailBlockquoteColor, FIXME: This property needs to be eliminated. It should never have been added.
97
99
    unsigned m_appearance : 6; // EAppearance
98
100
    unsigned m_borderFit : 1; // EBorderFit
 
101
#if USE(ACCELERATED_COMPOSITING)
 
102
    bool m_runningAcceleratedAnimation : 1;
 
103
#endif    
99
104
    OwnPtr<ShadowData> m_boxShadow;  // For box-shadow decorations.
100
105
    
101
106
    RefPtr<StyleReflection> m_boxReflect;
106
111
    FillLayer m_mask;
107
112
    NinePieceImage m_maskBoxImage;
108
113
 
 
114
    ETransformStyle3D m_transformStyle3D;
 
115
    EBackfaceVisibility m_backfaceVisibility;
 
116
    float m_perspective;
 
117
    Length m_perspectiveOriginX;
 
118
    Length m_perspectiveOriginY;
 
119
 
109
120
#if ENABLE(XBL)
110
121
    OwnPtr<BindingURI> bindingURI; // The XBL binding URI list.
111
122
#endif