aboutsummaryrefslogtreecommitdiff
path: root/src/html.cc
AgeCommit message (Collapse)Author
2009-01-28rm FontSizes*corvid
2009-01-27Implemented the tools button with CSS options. Also removed nav.h from html.ccJorge Arellano Cid
2009-01-26don't strdup() text passed to ListItem::initWithText()Johannes Hofmann
Memory allocation for text is done within Textblock itself (noticed by Jeremy).
2009-01-26mergeJorge Arellano Cid
2009-01-26Bug fix: Collapse adjacent "\t\f\n\r" characters into a single space.Jorge Arellano Cid
Test case: http://www.dillo.org/test/weird_pre.html
2009-01-26Fixed a regression with PRE characters (square boxes) (fixes d16cec5095be)corvid
Test case: http://www.dillo.org/test/jorgen.html
2009-01-26switch to DILLO_HTML_PARSE_MODE_PRE based on style->whiteSpaceJohannes Hofmann
2009-01-26factor out Html_parse_common_attrs() (by jcid)Johannes Hofmann
2009-01-25call inheritBackgroundColor() in Html_tag_open_default()Johannes Hofmann
As Html_tag_open_default() does not create a new dw widget, background color settings would be lost otherwise (noticed by corvid).
2009-01-23Cleanup and logic change in a_Cache_set_content_type().Jorge Arellano Cid
2009-01-23Bug fix: stop parsing right after open tag when stop_parser is set.Jorge Arellano Cid
2009-01-22Fix url string usage by calling the appropriate macro (2 places).Jorge Arellano Cid
2009-01-22Fix for d29cdb5b842e (charset decoding given in HTTP and META).Jorge Arellano Cid
2009-01-21Fixed charset decoding given in HTTP and META. (bugs and race condition)Jorge Arellano Cid
2009-01-17mergeJorge Arellano Cid
2009-01-17Remove unused functions.Jorge Arellano Cid
2009-01-17add parse_embedded_css optionJohannes Hofmann
2009-01-14Fix: inherit bgcolor from parent widget (images). Also cleanups.Jorge Arellano Cid
2009-01-14Make now-unused debug messages silent.Jorge Arellano Cid
2009-01-12replace fixed break space in Html_tag_open_li() with a user agent styleJohannes 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-10merge with mainJohannes Hofmann
2009-01-09add load_stylesheets optionJohannes Hofmann
Setting load_stylesheets=NO will disable loading of remote CSS stylesheets. CSS style information embedded in the page with <style></style> elements will still be used.
2009-01-09avoid warning about uninitialized variablesJohannes Hofmann
2009-01-09fix float->int castJohannes Hofmann
2009-01-09remove no longer used functionsJohannes Hofmann
2009-01-07Cleanup of cache.c WRT charset decoders.Jorge Arellano Cid
This patch gets rid of a series of valgrind complains with this page: http://selenic.com/pipermail/mercurial/
2009-01-05Added a right-click menu to the form submit button (allows to show hiddens)Jorge Arellano Cid
2009-01-03remove a_Html_set_top_font() which is no longer usedJohannes Hofmann
2009-01-03fix <dt> handlingJohannes Hofmann
2009-01-03remove empty Html_tag_open_* functions and replace them with ↵Johannes Hofmann
Html_tag_open_default()
2009-01-03convert <object> handlingJohannes Hofmann
2009-01-03reorder code in Html_tag_open_ul()Johannes Hofmann
2009-01-03convert frame handlingJohannes Hofmann
2009-01-03convert list handling to use styleEngineJohannes Hofmann
2009-01-02[mq]: dicache-cleanup6Jorge Arellano Cid
2009-01-01imported patch dicache-cleanup5Jorge Arellano Cid
2008-12-28merge with mainJohannes Hofmann
2008-12-21Patch for CSS stylesheet loading part#2Jorge Arellano Cid
2008-12-21Added a popup menu to form's submit buttoncorvid
2008-12-20merge with mainJohannes Hofmann
2008-12-20a little <style> code (by corvid)Johannes Hofmann
2008-12-19Cleaned up Html_pop_tag()Jorge Arellano Cid
2008-12-19fix check for media attribute in Html_open_link()Johannes Hofmann
2008-12-19Added support for the Q element.Jorge Arellano Cid
2008-12-19Interim patch for CSS stylesheet loading. Not finished yet.Jorge Arellano Cid
2008-12-17delete styleEngine in DilloHtml destructorJohannes Hofmann
2008-12-17automatically load stylesheets (by corvid)Johannes Hofmann
2008-12-15remove border style definition for <img> from user-agent styleJohannes Hofmann
2008-12-15call inheritBackgroundColor() in Html_open_h()Johannes Hofmann
2008-12-14inherit pseudo classes "link" and "visited"Johannes Hofmann