Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-10 | stylesheets: make cache query when cache buf is there but not completed yet | corvid | |
Happened to notice that if I ran: $ dillo http://hg.dillo.org http://hg.dillo.org only one of them got its stylesheet. | |||
2014-08-14 | improve lang and xml:lang attribute parsing | Johannes Hofmann | |
2014-08-05 | html5 doctype, whitespace permitted between "html" and '>' | corvid | |
...not only permitted, but seen sometimes. Why anyone would do that, I don't know. Maybe to make certain browsers fail. | |||
2014-08-05 | bug msg | corvid | |
'' (empty string) resembled " (double quotes) too strongly. | |||
2014-08-04 | bring some consistency to the bug messages. | corvid | |
I generally tried to: - start with a capital letter. - end with a period. - put elements inside <>. - bring element names close to the beginning of the message. | |||
2014-08-04 | bug messages: '\n' as separator instead of terminator | corvid | |
Now no extra line at the bottom of the bugs, plus shorter strings. | |||
2014-08-03 | BUG_MSG | corvid | |
2014-08-03 | MSG | corvid | |
2014-08-02 | Finished work on 'inline-block'. | Sebastian Geerken | |
2014-08-01 | Start work on 'inline-block'. | Sebastian Geerken | |
2014-07-23 | clarify situation with MENU element | corvid | |
2014-07-08 | html5 character references | corvid | |
some of them are more than one unicode codepoint. I know there were cases that resulted in six bytes, which could in principle be longer than the reference that it's replacing (e.g., "&" is five bytes). So this required some reworking. As for (mostly) duplicating the strings for html4 and html5, ⟨ and ⟩ are currently different and it would have felt a little silly in 2014 to have, say, a bool for whether an html5 ref appears in html4 plus special code for lang/rang. | |||
2014-05-14 | Avoid creation of unnecessary image bufs (at alt-text to img switch) | Jorge Arellano Cid | |
This is the first of a patch series for image code bugs that have severe impact on performance. With these testing files: 1imgA.html = <img src="maj00s.png" alt="img1"> 2imgSA.html = <img src="maj00s.png" alt="img1"> <img src="maj00s.png" alt="img12"> 3imgSA.html = <img src="maj00s.png" alt="img1"> <img src="maj00s.png" alt="img12"> <img src="maj00s.png" alt="img123"> 2imgA.html = <img src="maj00s.png" alt="img1"> <img src="maj21s.png" alt="img12"> 3imgA.html = <img src="maj00s.png" alt="img1"> <img src="maj21s.png" alt="img12"> <img src="c10s.png" alt="img123"> This are the results: .------------------------------------------------------------------. |imgbufs | No patch | Patched #1 | | | first time | upon reload | first time | upon reload | |------------------------------------------------------------------- |1imgA.html | 2 | 1 | 1 | 1 | |2imgSA.html | 3 | 2 | 1 | 2 | |3imgSA.html | 4 | 3 | 1 | 3 | |------------------------------------------------------------------- |2imgA.html | 4 | 2 | 2 | 2 | |3imgA.html | 6 | 3 | 3 | 3 | '------------------------------------------------------------------' | |||
2014-05-07 | page bugs: fix line numbers for bugs in entities | corvid | |
2014-05-04 | acknowledge that we view 0x80-0xFF bytes in urls as illegal, and make ↵ | corvid | |
handling uniform whether char is signed or unsigned | |||
2014-04-22 | in bad-url BUG_MSG, provide the url string | corvid | |
2014-04-09 | Merge with main repo. | Sebastian Geerken | |
2014-04-02 | comment detail | corvid | |
2014-04-02 | fix crash and use proper requester URL for CSS images | Johannes Hofmann | |
2014-04-02 | Merge with main repo. | Sebastian Geerken | |
2014-04-01 | resolve CSS background-image URLs relative to styleheet URL | Johannes Hofmann | |
2014-03-20 | Merge with main repo. | Sebastian Geerken | |
2014-03-16 | Separate 'Accept:' value for stylesheets | corvid | |
2014-03-01 | Merge with main repo. | Sebastian Geerken | |
2014-02-25 | extend http-equiv parsing to handle redirects without url= | Johannes Hofmann | |
On some site (m.bahn.de) the meta element looked like this: <meta http-equiv="Refresh" content="0;http://www.bahn.de/m/;fitScript=0/"> To handle the missing 'url=' in the content attribute we extend the parsing to skip beyond the ';' in case there is no 'url=' reported-by: Andreas Kemnade | |||
2014-02-15 | make embed/source/object work with display:none | corvid | |
2014-02-15 | TODO | corvid | |
2014-02-15 | input image shouldn't recognize hspace,vspace,border attrs | corvid | |
2014-02-15 | rudimentary support for html5 video,audio,source,embed | corvid | |
2014-02-02 | trim some spaces | corvid | |
2013-12-09 | Merge (large!). | Sebastian Geerken | |
2013-11-29 | Use img_rndr instead of img_rnd to avoid associating "rnd" suffex with random. | Jorge Arellano Cid | |
2013-10-16 | Merge with main repo. | Sebastian Geerken | |
2013-10-14 | Merge with main repo. | Sebastian Geerken | |
2013-10-07 | View(port) background now set by HTML parser. | Sebastian Geerken | |
2013-09-20 | Refactoring: some useful shortcuts in DilloHtml. | Sebastian Geerken | |
2013-09-11 | Fix a corner case with attribute parsing and null-bytes in HTML content | Jorge Arellano Cid | |
e.g. details in gbof-read-0_Html_get_attr2.html.asan | |||
2013-09-10 | html5, complain about assorted obsolete attributes | corvid | |
2013-09-10 | Some refactoring: the image decoding code now only accesses ↵ | Sebastian Geerken | |
dw::core::ImgRenderer, not dw::Image (which now implements the former) anymore. | |||
2013-09-07 | the WBR element itself | corvid | |
2013-09-07 | Textblock::addBreakOption() forceBreak argument to support WBR element | Sebastian Geerken | |
2013-09-06 | html5, complain about obsolete elements | corvid | |
2013-09-06 | Merge with main repo. | Sebastian Geerken | |
2013-09-06 | fix bug_msg | corvid | |
2013-09-06 | doctype more detailed bug msgs | corvid | |
2013-09-05 | html5 MARK element | corvid | |
2013-09-05 | INS element | corvid | |
2013-09-05 | don't require STYLE type attribute for html5 | corvid | |
2013-09-05 | don't warn about html5 in bug msgs | corvid | |
2013-09-05 | html5, id/name values are less restricted | corvid | |