Like the patch says,
/*
* Technically, cookies set with a domain of .example.com cannot be sent
* back to the host example.com, even if example.com set them in the first
* place. Do most user agents allow it? Yes. Does a large percentage of the
* web require it in order to work at all? Yes.
*/
The downside might be the scenario of sub.example.com setting a cookie
that example.com didn't expect to receive, but if everyone else does it...
Unless someone tells me not to within the next few days, I'll commit
something along the lines of this patch.
PS I just committed a change today to fix up expiration/replacement of
cookies, which was somewhat broken in general, and especially broken
with respect to session cookies, so if anyone out there uses cookies
much, please test!
See http://blog.worldlabel.com/2009/inkscape-0-47-totally-solid-with-lots-of-ne…
Dillo inflates the images in the top toolbar to the full width of the
window. The problem is this CSS (taken from the original stylesheet
and simplified)
a {
display:block;
float:left;
}
a img {
width:100%;
height:100%;
}
I guess Dillo is interpreting 100% relative to the wrong length?
Firefox renders the images at normal size.
(Minimal example attached.)
Regards,
Jeremy