On Fr, Apr 15, 2016, Nick Warne wrote:
One more issue to look at - on one of my pages, the in line style renders correctly with:
<div style="height: 2px; width: 850px; background-color: blue; text-align: center;"> <span style="background-color: white; position: relative; top: -0.75em"> <font size=-1><b> Word search section ['agc' engine] </b></font> </span> </div>
Now, current release Dillo just makes it a background colour bar ~ acceptable. Your patch makes it a sort of underscore coloured line that passes through the text.
I looked at this in detail, and found some strange behaviour in all three versions of dillo (3.0.4, 3.1-dev, and 3.1-dev_grows2). Consider this HTML: <div> A <span style="background-color: green">B</span> C </div> <div> A <span style="background-color: green"><font>B</font></span> C </div> In the first line, "B" is shown with a green background, as expected, but not in the second line, where the only difference is the <font> element. Is this a bug of the HTML parser? Sebastian