diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2011-06-07 12:06:52 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2011-06-07 12:06:52 +0200 |
commit | d9d884f2437dcfaf9bb576194767247616e5efdb (patch) | |
tree | e181c6d58b6c925f96862e02d5bce8ca97be52ec /src/cssparser.hh | |
parent | 605ef351d2f344aebb48631db74e330f45158c61 (diff) |
support !important in style attributes
Diffstat (limited to 'src/cssparser.hh')
-rw-r--r-- | src/cssparser.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cssparser.hh b/src/cssparser.hh index 1542405d..8609877b 100644 --- a/src/cssparser.hh +++ b/src/cssparser.hh @@ -47,8 +47,9 @@ class CssParser { void ignoreStatement(); public: - static CssPropertyList *parseDeclarationBlock(const char *buf, - int buflen); + static void parseDeclarationBlock(const char *buf, int buflen, + CssPropertyList *props, + CssPropertyList *propsImortant); static void parse(DilloHtml *html, DilloUrl *url, CssContext *context, const char *buf, int buflen, CssOrigin origin); static const char *propertyNameString(CssPropertyName name); |