summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/CSSParser.h')
-rw-r--r--WebCore/css/CSSParser.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/WebCore/css/CSSParser.h b/WebCore/css/CSSParser.h
index 8f3c6dd..1da20b7 100644
--- a/WebCore/css/CSSParser.h
+++ b/WebCore/css/CSSParser.h
@@ -45,7 +45,6 @@ namespace WebCore {
class CSSStyleSheet;
class CSSValue;
class CSSValueList;
- class CSSVariablesDeclaration;
class Document;
class MediaList;
class MediaQueryExp;
@@ -161,8 +160,6 @@ namespace WebCore {
PassRefPtr<CSSValueList> parseTransform();
bool parseTransformOrigin(int propId, int& propId1, int& propId2, int& propId3, RefPtr<CSSValue>&, RefPtr<CSSValue>&, RefPtr<CSSValue>&);
bool parsePerspectiveOrigin(int propId, int& propId1, int& propId2, RefPtr<CSSValue>&, RefPtr<CSSValue>&);
- bool parseVariable(CSSVariablesDeclaration*, const String& variableName, const String& variableValue);
- void parsePropertyWithResolvedVariables(int propId, bool important, CSSMutableStyleDeclaration*, CSSParserValueList*);
int yyparse();
@@ -186,7 +183,6 @@ namespace WebCore {
CSSRuleList* createRuleList();
CSSRule* createStyleRule(Vector<CSSSelector*>* selectors);
CSSRule* createFontFaceRule();
- CSSRule* createVariablesRule(MediaList*, bool variablesKeyword);
CSSRule* createPageRule(CSSSelector* pageSelector);
CSSRule* createMarginAtRule(CSSSelector::MarginBoxType marginBox);
void startDeclarationsForMarginBox();
@@ -202,10 +198,6 @@ namespace WebCore {
void addNamespace(const AtomicString& prefix, const AtomicString& uri);
- bool addVariable(const CSSParserString&, CSSParserValueList*);
- bool addVariableDeclarationBlock(const CSSParserString&);
- bool checkForVariables(CSSParserValueList*);
- void addUnresolvedProperty(int propId, bool important);
void invalidBlockHit();
Vector<CSSSelector*>* reusableSelectorVector() { return &m_reusableSelectorVector; }
@@ -235,9 +227,6 @@ namespace WebCore {
bool m_hasFontFaceOnlyValues;
bool m_hadSyntacticallyValidCSSRule;
- Vector<String> m_variableNames;
- Vector<RefPtr<CSSValue> > m_variableValues;
-
AtomicString m_defaultNamespace;
// tokenizer methods and data
@@ -270,8 +259,6 @@ namespace WebCore {
void checkForOrphanedUnits();
- void clearVariables();
-
void deleteFontFaceOnlyValues();
enum SizeParameterType {
@@ -299,7 +286,6 @@ namespace WebCore {
int m_lastSelectorLineNumber;
bool m_allowImportRules;
- bool m_allowVariablesRules;
bool m_allowNamespaceDeclarations;
Vector<RefPtr<StyleBase> > m_parsedStyleObjects;