summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* Fix handling of % signs in textarea initial value. (Fixes 1617123)John Mark Bell2007-02-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=3180
* Reparse entire document if meta charset resulting in changed document John Mark Bell2007-02-101-14/+48
| | | | | | encoding is encountered (fixes 1389126) svn path=/trunk/netsurf/; revision=3176
* Work around libxml oddness in allowing document meta encoding to John Mark Bell2007-02-101-0/+20
| | | | | | override external charset information. svn path=/trunk/netsurf/; revision=3175
* Fix handling of cookies in unverifiable transactions caused by a redirect ↵John Mark Bell2007-02-021-11/+13
| | | | | | from a fetch into a browser window which was varifiable. svn path=/trunk/netsurf/; revision=3165
* Bring handling of submission of blank file inputs in line with other browsers.John Mark Bell2007-01-301-5/+12
| | | | | | Tidy up fetch_post_convert while I'm at it. svn path=/trunk/netsurf/; revision=3159
* Make GTK build compile on FreeBSD.James Bursa2007-01-292-2/+3
| | | | svn path=/trunk/netsurf/; revision=3154
* Add html_dump_frameset() to help understand and debug frames.James Bursa2007-01-241-0/+56
| | | | svn path=/trunk/netsurf/; revision=3148
* Default frame margin 0 instead of -1. Fix marginheight parsing.James Bursa2007-01-241-9/+9
| | | | svn path=/trunk/netsurf/; revision=3147
* Fix box_visible() to return a bool.James Bursa2007-01-142-2/+2
| | | | svn path=/trunk/netsurf/; revision=3144
* Fix parsing error when an empty HTML data is returned. Add HTTP status and ↵James Bursa2007-01-131-96/+126
| | | | | | other information to status bar. svn path=/trunk/netsurf/; revision=3140
* Don't require frames to specify a URL (fixes frame names not being recognised)Richard Wilson2007-01-031-22/+13
| | | | svn path=/trunk/netsurf/; revision=3135
* Stop animated images rendering for hidden or fallback boxes.James Bursa2006-12-313-1/+32
| | | | svn path=/trunk/netsurf/; revision=3128
* Reflow iframes on layout (fix 1617625)Richard Wilson2006-12-301-2/+6
| | | | svn path=/trunk/netsurf/; revision=3126
* Implement form targets (fix 1619094)Richard Wilson2006-12-303-3/+6
| | | | svn path=/trunk/netsurf/; revision=3125
* Fix height of absolutely positioned inline blocks with an object. Fix layout ↵James Bursa2006-12-261-6/+22
| | | | | | of list markers with no text. svn path=/trunk/netsurf/; revision=3122
* Remove wrong kind of free for data allocated using talloc.James Bursa2006-12-081-1/+0
| | | | svn path=/trunk/netsurf/; revision=3113
* Allocate new styles for implied boxes using talloc instead of ↵James Bursa2006-12-081-8/+10
| | | | | | css_duplicate_style(). svn path=/trunk/netsurf/; revision=3112
* Improved tracking of memory usage. c->size is now exclusive of talloc size, ↵James Bursa2006-12-031-2/+0
| | | | | | and the two are added to find the full size. svn path=/trunk/netsurf/; revision=3103
* Update project URL.Michael Drake2006-11-2722-48/+48
| | | | svn path=/trunk/netsurf/; revision=3073
* Add browser_window_reformat() and use it instead of content_reformat() to ↵James Bursa2006-11-261-5/+0
| | | | | | remove browser_window calls from html.c. svn path=/trunk/netsurf/; revision=3071
* Move frames-related code out of browser.c into a new file. Remove some ↵James Bursa2006-11-261-5/+0
| | | | | | browser_window calls from html.c. svn path=/trunk/netsurf/; revision=3070
* Media-descriptors are case-insensitive.Michael Drake2006-11-111-4/+4
| | | | svn path=/trunk/netsurf/; revision=3044
* Fix gap between list marker and list content.Michael Drake2006-11-101-0/+1
| | | | svn path=/trunk/netsurf/; revision=3040
* Fix distortion of list marker images.James Bursa2006-11-071-6/+16
| | | | svn path=/trunk/netsurf/; revision=3039
* Implement list-style-type circle, square, none, and decimal.James Bursa2006-11-051-2/+36
| | | | svn path=/trunk/netsurf/; revision=3034
* More work on lists. Simplify the implementation to a BLOCK for display: ↵James Bursa2006-11-056-424/+124
| | | | | | list-item, with a marker box on box->list_marker. svn path=/trunk/netsurf/; revision=3031
* Initial work for display: list-item supportJohn Mark Bell2006-11-045-18/+416
| | | | svn path=/trunk/netsurf/; revision=3028
* Ensure page encoding isn't trampled.John Mark Bell2006-11-041-0/+3
| | | | svn path=/trunk/netsurf/; revision=3027
* Implement absolute positioned inlines.James Bursa2006-11-042-9/+45
| | | | svn path=/trunk/netsurf/; revision=3026
* Remove code to determine containing block; no longer used.James Bursa2006-10-221-24/+3
| | | | svn path=/trunk/netsurf/; revision=3015
* Do absolute positioning after other layout so that containing block is fully ↵James Bursa2006-10-101-37/+30
| | | | | | positioned. svn path=/trunk/netsurf/; revision=2991
* Check for null style before using it.James Bursa2006-10-091-2/+3
| | | | svn path=/trunk/netsurf/; revision=2986
* Modify implementation of absolute positioning to support "static positions". ↵James Bursa2006-10-086-199/+59
| | | | | | Absolutely positioned boxes are now in their original place in the tree instead of linked from absolute_children. svn path=/trunk/netsurf/; revision=2984
* Correcly encode spaces for url-encoded form submission.John Mark Bell2006-09-191-2/+2
| | | | svn path=/trunk/netsurf/; revision=2960
* Fix 1559653.John Mark Bell2006-09-181-2/+7
| | | | svn path=/trunk/netsurf/; revision=2959
* Add some documentation to layout_block_context(). Move code out into ↵James Bursa2006-09-161-33/+67
| | | | | | layout_block_object(). svn path=/trunk/netsurf/; revision=2957
* Call html_reformat() from html_convert() to eliminate duplicate code. ↵James Bursa2006-09-161-19/+25
| | | | | | Improve calculations of document width and height. svn path=/trunk/netsurf/; revision=2956
* Squash warnings.John Mark Bell2006-09-111-26/+41
| | | | svn path=/trunk/netsurf/; revision=2953
* Fixed translation of html entities when a textarea has an initial valueJeffrey Lee2006-09-111-2/+19
| | | | svn path=/trunk/netsurf/; revision=2952
* Fixed textarea wordwrap if first character on line is a spaceJeffrey Lee2006-09-101-0/+5
| | | | svn path=/trunk/netsurf/; revision=2941
* textarea html tag fix; horizontal scrollbars; auto-scroll improvementsJeffrey Lee2006-09-102-25/+52
| | | | svn path=/trunk/netsurf/; revision=2940
* Add frame target support to imagemaps.John Mark Bell2006-09-062-37/+98
| | | | svn path=/trunk/netsurf/; revision=2920
* Fix 1546941.Richard Wilson2006-09-021-6/+10
| | | | svn path=/trunk/netsurf/; revision=2909
* Experimental new frames code.Richard Wilson2006-09-024-313/+470
| | | | svn path=/trunk/netsurf/; revision=2906
* Stop rendering of iframe children; they're for non-iframe supporting UAs John Mark Bell2006-08-241-0/+3
| | | | | | (which isn't us) svn path=/trunk/netsurf/; revision=2893
* Remove unused and unimplemented nsfont_txtenum().James Bursa2006-08-211-11/+0
| | | | svn path=/trunk/netsurf/; revision=2875
* Fix layout of standalone <br>.James Bursa2006-08-141-1/+1
| | | | svn path=/trunk/netsurf/; revision=2849
* Use a minimum line height of 0 for inline containers which have no text.James Bursa2006-08-131-2/+16
| | | | svn path=/trunk/netsurf/; revision=2838
* Layout absolutely positioned children of tables.James Bursa2006-07-231-0/+3
| | | | svn path=/trunk/netsurf/; revision=2791
* Allow broken meta refresh commands (fix mail.google.com, bug 1522982)Richard Wilson2006-07-171-1/+10
| | | | svn path=/trunk/netsurf/; revision=2777