aboutsummaryrefslogtreecommitdiff
path: root/src/html.cc
AgeCommit message (Collapse)Author
2009-10-20Fixed a bug in w3c_mode. It wasn't working at all!Jeremy Henty
2009-10-15remove "using namespace" statements from header filesJohannes Hofmann
"using namespace" in headers also affects all files that include the header which is unwanted and unexpected in most cases.
2009-10-03tooltip for A elementcorvid
2009-10-03some tooltipscorvid
2009-09-20trim some spacescorvid
2009-09-17turn off PrevWasSPC for inline widgetscorvid
Noticed that there weren't spaces after the math images in http://en.wikipedia.org/wiki/Linear_programming
2009-08-02fix segfault in Html_parse_doctypecorvid
BUG 918. http://www.freiesmagazin.de/mobil/freiesMagazin-2009-08-bilder.html contained <!DOCTYPE HTML PUBLIC //W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> so the last character in the tag was an open quote.
2009-08-02use new addText() in Html_process_spacecorvid
2009-08-02restore constness of word in Html_process_wordcorvid
2009-08-02a Textblock::addText() that takes len argcorvid
2009-08-02treat ideographic characters (Chinese/Japanese) as wordscorvid
2009-08-02split words that contain whitespacecorvid
e.g. dillo&#32;browser
2009-07-28css charsetcorvid
css 2.1 is strict about wanting precisely '@charset "charsetname";'
2009-07-26allow collapse of &#32; (space numeric char. ref.) in wordcorvid
2009-07-16Verify dpi URLs for instant redirects.Jorge Arellano Cid
2009-07-15Fix segfault from AREA when MAP is missing name attributecorvid
2009-07-06use CssLengthJohannes Hofmann
2009-06-29comment wordingcorvid
2009-06-29fix image size check in a_Html_image_new()Johannes Hofmann
2009-06-29use IMAGE_MAX_AREA instead of IMAGE_MAX_W and IMAGE_MAX_HJohannes Hofmann
2009-06-22remove system includescorvid
2009-06-19Added a limit for PNG image sizeJorge Arellano Cid
2009-05-22constscorvid
2009-05-22use backgroundStyle() to ensure that backgroundColor is setJohannes Hofmann
2009-05-22rm current_bg_colorcorvid
2009-05-21DilloHtml Buf_Consumed unneededcorvid
2009-05-15Refactor: isolate calls to utf8 functions into a single source file.corvid
2009-05-10Fix a memory leak with DilloImage structuresHofmann Johannes
2009-05-09[mq]: replace-DW2TB-with-HT2TBJeremy Henty
2009-05-08mergeJorge Arellano Cid
2009-05-08spellingcorvid
2009-05-07Cleanup in a_Image_new() signatureJeremy Henty
2009-05-06separate a_Capi_get_flags and a_Capi_get_flags_with_redirectioncorvid, Jorge Arellano Cid
2009-05-03Removed redundant caller NULL checks already in the APIJeremy Henty
2009-05-01fix comment to a_Html_image_new()Jeremy Henty
2009-04-24dStrdupcorvid
2009-04-22mergeJohannes Hofmann
2009-04-22disable forms while stylesheets are pendingJohannes Hofmann
To avoid lost user input on repush, we disable forms until all stylesheets have been loaded. Also open select widgets cause crashes on repush.
2009-04-19Camel case in src/dillo.ccTim Nieradzik
2009-04-18Implemented Instant client-side redirects (META refresh with delay=0)Jorge Arellano Cid
http://www.w3.org/TR/2008/NOTE-WCAG20-TECHS-20081211/H76.html
2009-04-08support CSS @import directiveJohannes Hofmann
2009-03-26Memory leak fix for 7d3d7c405cf4Jorge Arellano Cid
2009-03-26compiler warning fix: add parenthesisJorge Arellano Cid
2009-03-26Added support for a quoted URL in META refreshJorge Arellano Cid
2009-03-19load <style></style> content only if applicableJohannes Hofmann
2009-03-11clear DilloHtmlState stack on destructionJohannes Hofmann
2009-03-10replace visited_color dillorc optionJohannes Hofmann
to change the color of visited links add a line :visited {color: red} to your ~/.dillo/style.css file instead.
2009-03-06remove text_color dillorc optionJohannes Hofmann
To change the default text color add a line like body {color: yellow} to your ~/.dillo/style.css file.
2009-03-06remove bg_color dillorc optionJohannes Hofmann
To set a custom background color add a line like: body {background-color: white} to your ~/.dillo/style.css file. This also works for plain text display and image viewing.
2009-03-05reduce number of styleEngine::style0() callsJohannes Hofmann
Rearrange code, so that for each new element, StyleEngine::setNonCssHints() is called before the first call to StyleEngine::style() or StyleEngine::wordStyle(). This avoids unnecessary CSS style computations which are expensive. Add an assertion to ensure this.