summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/StyledElement.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-03-12 14:11:15 +0100
committerSimon Hausmann <simon.hausmann@nokia.com>2012-03-12 14:11:15 +0100
commitdd91e772430dc294e3bf478c119ef8d43c0a3358 (patch)
tree6f33ce4d5872a5691e0291eb45bf6ab373a5f567 /Source/WebCore/dom/StyledElement.h
parentad0d549d4cc13433f77c1ac8f0ab379c83d93f28 (diff)
downloadqtwebkit-dd91e772430dc294e3bf478c119ef8d43c0a3358.tar.gz
Imported WebKit commit 3db4eb1820ac8fb03065d7ea73a4d9db1e8fea1a (http://svn.webkit.org/repository/webkit/trunk@110422)
This includes build fixes for the latest qtbase/qtdeclarative as well as the final QML2 API.
Diffstat (limited to 'Source/WebCore/dom/StyledElement.h')
-rw-r--r--Source/WebCore/dom/StyledElement.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/WebCore/dom/StyledElement.h b/Source/WebCore/dom/StyledElement.h
index 2773e41c3..e2079d8e0 100644
--- a/Source/WebCore/dom/StyledElement.h
+++ b/Source/WebCore/dom/StyledElement.h
@@ -31,6 +31,7 @@
namespace WebCore {
class Attribute;
+struct PresentationAttributeCacheKey;
class StyledElement : public Element {
public:
@@ -39,8 +40,8 @@ public:
virtual StylePropertySet* additionalAttributeStyle() { return 0; }
void invalidateStyleAttribute();
- StylePropertySet* inlineStyleDecl() const { return attributeData() ? attributeData()->inlineStyleDecl() : 0; }
- StylePropertySet* ensureInlineStyleDecl() { return ensureAttributeData()->ensureInlineStyleDecl(this); }
+ const StylePropertySet* inlineStyle() const { return attributeData() ? attributeData()->inlineStyle() : 0; }
+ const StylePropertySet* ensureInlineStyle() { return ensureAttributeData()->ensureInlineStyle(this); }
// Unlike StylePropertySet setters, these implement invalidation.
bool setInlineStyleProperty(int propertyID, int identifier, bool important = false);
@@ -48,7 +49,7 @@ public:
bool setInlineStyleProperty(int propertyID, const String& value, bool important = false);
bool removeInlineStyleProperty(int propertyID);
- virtual CSSStyleDeclaration* style() OVERRIDE { return ensureInlineStyleDecl()->ensureInlineCSSStyleDeclaration(this); }
+ virtual CSSStyleDeclaration* style() OVERRIDE;
StylePropertySet* attributeStyle();
@@ -64,7 +65,7 @@ protected:
virtual void parseAttribute(Attribute*);
virtual void copyNonAttributeProperties(const Element*);
- virtual bool isPresentationAttribute(Attribute*) const { return false; }
+ virtual bool isPresentationAttribute(const QualifiedName&) const { return false; }
virtual void collectStyleForAttribute(Attribute*, StylePropertySet*) { }
void addPropertyToAttributeStyle(StylePropertySet*, int propertyID, int identifier);
@@ -82,12 +83,13 @@ private:
virtual void updateStyleAttribute() const;
void inlineStyleChanged();
+ void makePresentationAttributeCacheKey(PresentationAttributeCacheKey&) const;
void updateAttributeStyle();
- void destroyInlineStyleDecl()
+ void destroyInlineStyle()
{
if (attributeData())
- attributeData()->destroyInlineStyleDecl(this);
+ attributeData()->destroyInlineStyle(this);
}
};