Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-03 | Added (not implemented) CSS attribute 'overflow'. | Sebastian Geerken | |
2014-08-10 | trim spaces | corvid | |
...now that floats and grows are in the repo and I won't be making Sebastian's life difficult with a bunch of whitespace changes. | |||
2014-08-02 | Implemented 'min-width' and 'max-width'. | Sebastian Geerken | |
2014-04-11 | Negative Werte für 'background-position'; 'none' für 'background-image'. | Johannes Hofmann | |
2014-04-02 | Merge with main repo. | Sebastian Geerken | |
2014-04-01 | resolve CSS background-image URLs relative to styleheet URL | Johannes Hofmann | |
2014-03-20 | Merge with main repo. | Sebastian Geerken | |
2014-03-03 | fix clang warning | Johannes Hofmann | |
2014-03-01 | Merge with main repo. | Sebastian Geerken | |
2014-02-15 | merge | Johannes Hofmann | |
2014-02-02 | trim some spaces | corvid | |
2014-01-09 | some whitespace cleanups | Johannes Hofmann | |
2013-12-27 | Removed preprocessor warning. | Sebastian Geerken | |
2013-12-09 | Merge (large!). | Sebastian Geerken | |
2013-12-02 | CSS margins can be 'auto' | Johannes Hofmann | |
2013-11-30 | accept 'auto' only for CSS properties that allow it | Johannes Hofmann | |
Instead of handling the 'auto' value implicitly for all CSS properties that accept lenght types, we now accept it only for specific properties where 'auto' is valid according to CSS 2.1. This fixes an assertion with the following HTML fragment: <div style="background:auto">hello</div> | |||
2013-11-29 | Typos. | Jorge Arellano Cid | |
2013-10-14 | Minor cleanup. | Sebastian Geerken | |
2013-10-01 | Parsing of <background-position> is complete. | Sebastian Geerken | |
2013-09-30 | Cleaned up Johannes' patch. | Sebastian Geerken | |
2013-09-30 | New type for <background-position> (incomplete). | Johannes Hofmann | |
2013-09-27 | <background-position> is now parsed correctly. | Sebastian Geerken | |
2013-09-27 | Typo (confusing dimensions!). | Sebastian Geerken | |
2013-09-26 | Handle 'background' correctly (a bit complicated because of ↵ | Sebastian Geerken | |
<background-position>). | |||
2013-09-26 | CSS attribute 'background-position'. | Sebastian Geerken | |
2013-09-25 | CSS attribute 'background-attachment' (not implemented in dw::core::style). | Sebastian Geerken | |
2013-09-23 | CSS attribute 'background-repeat'. | Sebastian Geerken | |
2013-09-22 | Check url in CSS parser. | Sebastian Geerken | |
2013-09-22 | CSS type <uri> implemented; applied to 'background-image'. | Sebastian Geerken | |
2013-09-20 | First attempt to integrate 'background-image'. | Sebastian Geerken | |
2013-08-21 | "clear" attribute, mostly. | Sebastian Geerken | |
2013-06-03 | Added CSS properties: position, top, bottom, left, right. (Needed for ↵ | Sebastian Geerken | |
absolute positions.) | |||
2012-11-17 | Merge. | Sebastian Geerken | |
2012-11-15 | ignore empty CSS class or id selectors | Johannes Hofmann | |
Testcase: <html> <head> <style type=text/css> . {color: red} </style> </head> <body> <div>hello</div> </body> </html> | |||
2012-10-30 | Merge with http://hg.dillo.org/dillo | Sebastian Geerken | |
2012-10-30 | trim some spaces | corvid | |
2012-09-14 | Merge of <http://hg.dillo.org/dillo>. | Sebastian Geerken | |
2012-05-26 | unify use of sizeof() when computing array length | Johannes Hofmann | |
Submitted by: 123 <p37sitdu@lavabit.com> | |||
2012-01-21 | add inline-block to possible display: values | Johannes Hofmann | |
2012-01-13 | fix descendant selector matching | Johannes Hofmann | |
When matching descendant selectors we need to test all possibilities and not just the first one. While at it refactor CssSelector::match (). Testcase: <html> <head> <style type=text/css> .a > .b .c { font-weight:bold }</style> </head> <body> <div class=a> <div class=b> <div class=b> <div class=c>should be bold</div> </div> </div> </div> </body> </html> Noticed-by: Sebastian Geerken <sgeerken@dillo.org> | |||
2011-11-11 | locale-independent ASCII character case handling | corvid | |
Basically, I and i are different letters in Turkic languages, and this causes problems for str(n)casecmp and toupper/tolower in these locales when dillo is dealing with ASCII. | |||
2011-10-22 | text-transform property | corvid | |
2011-09-19 | merge | Johannes Hofmann | |
2011-08-24 | add support for CSS adjacent sibling selectors | Johannes Hofmann | |
2011-06-21 | Eliminated a pack of 22 compiler warnings (gcc-4.6.1 amd64) | Jorge Arellano Cid | |
2011-06-12 | merge in recent changes from main repo | corvid | |
2011-06-07 | support !important in style attributes | Johannes Hofmann | |
2011-05-28 | merge | Johannes Hofmann | |
2010-12-18 | CssParser::parseImport(): implement media-conditional @import rules. | Jeremy Henty | |
2010-12-18 | cssparser.cc: move some calls to nextToken(). | Jeremy Henty | |