aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-02-02remove unused order_count parameterJohannes Hofmann
It seems that in dillo-0.8.0-css-3 it was used to make sure that later definitions of the same CSS property have more weight than previous ones. If for example a first stylesheet sets background-color to black, and a second stylesheet sets it to green, green should win. But as we currently parese everything in order (throughing away all parsed CSS data when a new CSS stylesheet has arrived), we don't need to remember the original ordering of stylesheets.
2009-02-01Minor function signature cleanupJorge Arellano Cid
2009-02-01Added a warning message to the broken limit_text_width pref.corvid
2009-02-01Removed a redundant check.Jorge Arellano Cid
2009-02-01s/atoi/strtol/gJorge Arellano Cid
2009-02-01Fixed a SEGFAULT bug on redirections without Locationcorvid
2009-02-01Fixed tools menu to take CSS state from prefscorvid
2009-02-01Refactored prefs.c to a much smaller size!corvid
2009-02-01Fixed a leak in Html_tag_open_link()Jeremy Henty
2009-01-31Removed an unused variable in DicEntry structureJorge Arellano Cid
2009-01-31Avoid a compiler warning in cache.cJorge Arellano Cid
2009-01-31Minor tricks to avoid a couple compiler warnings in png.cJorge Arellano Cid
2009-01-31Avoid a couple of compiler warnings in jpeg.cJorge Arellano Cid
2009-01-31Fixed a bug parsing prefs.save_dir (missing break).corvid
2009-01-31Cosmetic reorder of a few enum items.corvid
2009-01-31s/gif.h/dgif.h/ in Makefile.am (fixes 6828b4d19d69)Jorge Arellano Cid
2009-01-31Set dicache as MIME dispatcher for image/{gif,jpg,png}. +refactor and cleanupsJorge Arellano Cid
2009-01-31add copyright notice to cssparser.ccJohannes Hofmann
2009-01-31mergeJohannes Hofmann
2009-01-31Switched strcasecmp() to dStrcasecmp() calls.Jorge Arellano Cid
2009-01-31remove debugging codeJohannes Hofmann
2009-01-31remove unnecessary initializationJohannes Hofmann
2009-01-31optimize CssStyleSheet::apply() a bitJohannes Hofmann
2009-01-31set inheritBackgroundColor for <p>Johannes Hofmann
2009-01-31make CssParser case insensitiveJohannes Hofmann
2009-01-31fix cascading orderJohannes Hofmann
CSS data given in style="" attributes can be overruled by AUTHOR_IMPORTANT style data. This fixes http://www.w3.org/Style/CSS/Test/CSS2.1/current/html4/t060402-c31-important-00-b.htm
2009-01-31commentJohannes Hofmann
2009-01-30remove todoJohannes Hofmann
2009-01-30commentJohannes Hofmann
2009-01-30apply CSS rules ordered by their specificityJohannes Hofmann
2009-01-30simplify CssSimpleSelector::specificity()Johannes Hofmann
2009-01-30insert rules in correct orderJohannes Hofmann
2009-01-30add CssRule::specificityJohannes Hofmann
2009-01-30add CssSelector::specificity()Johannes Hofmann
2009-01-30add commentJohannes Hofmann
2009-01-30whitespaceJohannes Hofmann
2009-01-30remove unused CSS parser functionsJohannes Hofmann
2009-01-30inline some CSS methodsJohannes Hofmann
2009-01-30fix parsing CSS values of type CSS_TYPE_STRINGJohannes Hofmann
2009-01-30CssContext::addRule(): only add rules with nonempty property listJohannes Hofmann
2009-01-30remove unused methodJohannes Hofmann
2009-01-29mergeJorge Arellano Cid
2009-01-29Made Shift+{Left,Right} work after openning multiple URLs from CLIJorge Arellano Cid
2009-01-29free font names when replacing themJohannes Hofmann
2009-01-29free font names from style="" attributes (found by Jeremy)Johannes Hofmann
2009-01-29mergeJorge Arellano Cid
2009-01-29Refactor cleanup in menu.cc (load images)corvid
2009-01-29remove redundant array sizes in cssparser.ccJohannes Hofmann
2009-01-29add (incomplete) support for the "font" shorthandJohannes Hofmann
This commit makes simple stuff work, but does not implement all the hairy details (see http://www.w3.org/TR/CSS21/fonts.html#font-shorthand).
2009-01-28make sure strings from CSS parser are freedJohannes Hofmann