Age | Commit message (Collapse) | Author |
|
|
|
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.
|
|
|
|
|
|
This fixes a segfault bug introduced by changeset 350af350b840.
By mistake the expected URL got inside the parallel handling of CCC,
into a race condition with a segfault path.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
I saw a MSG with size 0x[something], and of course I thought it was
complaining that a size was given in hex notation.
|
|
In Html_write_raw() the current textblock can change while parsing HTML.
Instead of flushing the Textblock we started with, we now flush the
current one.
This fixes a long standing drawing bug where text was not positioned
initially.
|
|
|
|
|
|
|
|
|
|
http://www.weather.gov/ptwc/ doesn't work because it uses real numbers
rather than integers for coords. The 4.01 spec doesn't quite _rigorously_
state that real numbers are no good in that case, so far as I can see,
but it's pretty clearly the intention -- and html5 _does_ spell this out.
|
|
|
|
noticed by Johannes.
|
|
|
|
|
|
|
|
* Instead of passing the nonCssHints as a CssPropertyList, set the hints
separately and create the list in StyleEngine.
* The CssPropertyList holding the nonCssHints is now completely managed
by StyleEngine and kept on the stack.
* Replace the table_cell_props mechanic in html.cc/table.cc with a
new method inheritNonCssHints() in StyleEngine.
|
|
|
|
|
|
The CSS style information is only available after <head> has been parsed
completely. So we redo the style for the <html> tag in Html_open_body().
Also set the canvas color either as background color of the <html> or
the <body> tag (see http://www.w3.org/TR/CSS2/colors.html).
|
|
|
|
As defined in http://www.w3.org/TR/CSS2/colors.html, the background
color of the canvas can either be defined by the <html> or the <body>
tag. To be able to deal with this in src/html.cc we now explicitely set
the canvas color instead of infering it from the root widget.
|
|
|
|
This makes background color work for elements for which no new widget is
added. It just a workaround until complete style handling for inline
elements is implemented.
Submitted-by: Jeremy Henty <onepoint@starurchin.org>
|
|
They remove two unused structs and make variable names
consistent between function typedefs and function definitions.
|
|
|
|
|
|
same_domain option in preference so that spying on users isn't so easy.
|
|
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-March/007424.html
|
|
thread:
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-March/007420.html
|
|
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-March/007406.html
Johannes wrote the code, and I (corvid) added some big comments of the sort
alluded to in that thread.
|
|
|
|
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-September/006894.html
has the thread. Jorge expressed no opinion. Johannes approved, but wasn't
sure that adding zero-width spaces to the page was necessary. I wasn't sure
that it was necessary, either, so this version doesn't do that.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-October/006936.html
|
|
add_textblock already surrounds the new textblock with parbreaks,
so we don't need any more until we want to increase the break space
above or below.
|
|
The earlier space is less likely to be styled with the intended appearance.
|