Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-12 | String -> ConstString | Johannes Hofmann | |
2009-01-12 | remove CssRule reference counting | Johannes Hofmann | |
2009-01-12 | avoid unnecessary lout::object::String creation | Johannes Hofmann | |
2009-01-12 | fix some bugs | Johannes Hofmann | |
2009-01-12 | initial implementation of hashmap based CSS selector matching | Johannes Hofmann | |
2009-01-12 | replace fixed break space in Html_tag_open_li() with a user agent style | Johannes Hofmann | |
This changes allows to set the margin of <li> elements to zero via CSS. Subsequent <li> elements then have no spacing in between. Test case: <html> <head> <style type="text/css"> li { border: 1px solid black; margin: 0; } </style> </head> <body> <ul> <li>hello</li> <li>hello</li> </ul> </body> </html> There should be no vertical space between the two boxes. | |||
2009-01-09 | cleanup user agent style | Johannes Hofmann | |
2009-01-03 | fix <dt> handling | Johannes Hofmann | |
2009-01-03 | set list-style-type to decimal for <ol> | Johannes Hofmann | |
2009-01-03 | fix debug printing of CSS selectors | Johannes Hofmann | |
2009-01-03 | convert list handling to use styleEngine | Johannes Hofmann | |
2008-12-19 | Interim patch for CSS stylesheet loading. Not finished yet. | Jorge Arellano Cid | |
2008-12-17 | remove unnecessary this-> | Johannes Hofmann | |
2008-12-17 | initialize refCount in CssRule | Johannes Hofmann | |
2008-12-17 | add CssSelector destructor | Johannes Hofmann | |
2008-12-16 | speed up CSS selector matching | Johannes Hofmann | |
A CssStyleSheet is now an array of lists of CssRules. The array holds a list if those rules that might potentially match whith a given element on the top of docTree. | |||
2008-12-15 | remove border style definition for <img> from user-agent style | Johannes Hofmann | |
2008-12-14 | convert Html_tag_open_img() | Johannes Hofmann | |
2008-12-11 | remove table border color definitions from user-agent style | Johannes Hofmann | |
2008-12-11 | fix <hr> handling | Johannes Hofmann | |
2008-12-11 | update user agent style for tables | Johannes Hofmann | |
2008-12-10 | convert Html_tag_open_hr() and Html_tag_open_pre() | Johannes Hofmann | |
2008-12-05 | add margin directives to user agent style to replace Html_add_indented() | Johannes Hofmann | |
2008-12-04 | fix default table borders | Johannes Hofmann | |
2008-12-02 | disable debug output | Johannes Hofmann | |
2008-12-01 | streamline CssSelector a bit | Johannes Hofmann | |
2008-12-01 | add style definition for <th> | Johannes Hofmann | |
2008-12-01 | swap CHILD and DESCENDENT CSS selector combinators | Johannes Hofmann | |
2008-11-30 | make complex selectors work | Johannes Hofmann | |
2008-11-30 | factor out Css_parse_simple_selector() | Johannes Hofmann | |
2008-11-30 | make CssSelector a list of CssSimpleSelector objects | Johannes Hofmann | |
2008-11-25 | convert <code>, <pre> | Johannes Hofmann | |
2008-11-25 | convert <big>, <small>, <center>, <tt> | Johannes Hofmann | |
2008-11-24 | convert <samp>, <kbd>, <u>, <strike> handling | Johannes Hofmann | |
2008-11-20 | Removed lots of compiler warnings, and formatted code to 80 columns. | Jorge Arellano Cid | |
Used: indent -kr -st -sc -i3 -bad -nbbo -nut | |||
2008-11-19 | add proper buffer handling in CssContext::buildUserStyle() | Johannes Hofmann | |
2008-11-15 | fix background color definition in user-agent style | Johannes Hofmann | |
2008-11-15 | increase style buffer | Johannes Hofmann | |
2008-11-14 | use shorthand properties | Johannes Hofmann | |
2008-11-14 | support padding-* and set it for <td> | Johannes Hofmann | |
2008-11-14 | s, strike, del, thead, tbody, tfoot | Johannes Hofmann | |
2008-11-14 | support <sub> and <sup> | Johannes Hofmann | |
2008-11-14 | CSS for HTML is case insensitive | Johannes Hofmann | |
2008-11-14 | setNonCssProperties() -> setNonCssHints() | Johannes Hofmann | |
2008-11-13 | set margins for h[1-6] | Johannes Hofmann | |
2008-11-13 | merge | Johannes Hofmann | |
2008-11-13 | fix h[1-6] styles | Johannes Hofmann | |
2008-11-13 | add CssContext destructor | Johannes Hofmann | |
2008-11-13 | merge with cvs | Johannes Hofmann | |
2008-11-13 | add reference counting for CssPropertyList and CssSelector | Johannes Hofmann | |