summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* Re-express table_find_cell algorithm to avoid relying upon side-effects.John Mark Bell2008-03-191-5/+13
| | | | svn path=/trunk/netsurf/; revision=3986
* Lose spurious *John Mark Bell2008-03-191-1/+1
| | | | svn path=/trunk/netsurf/; revision=3985
* Squash "implicit declaration of function 'gui_multitask'" warnings.John Mark Bell2008-03-193-6/+0
| | | | svn path=/trunk/netsurf/; revision=3980
* Ensure that scrollbar foreground is actually visible (black on black, for ↵John Mark Bell2008-03-141-2/+10
| | | | | | example, isn't very usable) svn path=/trunk/netsurf/; revision=3950
* Change meaning of c->redraw_time to be the earliest time to reflow during ↵Rob Kendrick2008-03-111-4/+15
| | | | | | page asset fetch. Have the time selected vary depending on how long the last reflow took. svn path=/trunk/netsurf/; revision=3925
* Insert implied boxes rather than entirely removing empty table/row group ↵John Mark Bell2008-03-101-22/+62
| | | | | | nodes from the box tree. svn path=/trunk/netsurf/; revision=3920
* Fix last pointer manipulation for table and row_group boxes.John Mark Bell2008-03-101-2/+4
| | | | svn path=/trunk/netsurf/; revision=3919
* Take account of any table height specified through CSS or HTML.John Mark Bell2008-03-101-1/+10
| | | | svn path=/trunk/netsurf/; revision=3918
* Apply min/max-height to absolutely positioned elements.Michael Drake2008-03-101-0/+1
| | | | svn path=/trunk/netsurf/; revision=3916
* Adjust y values after seting a min/max-height.Michael Drake2008-03-091-5/+22
| | | | svn path=/trunk/netsurf/; revision=3910
* Initial stab at min/max-height support.Michael Drake2008-03-091-1/+46
| | | | svn path=/trunk/netsurf/; revision=3909
* When floats have clear right or left set, as well as being put below floats ↵Michael Drake2008-03-091-20/+29
| | | | | | on that side, they should still follow normal behaviour with respect to floats on the other side. svn path=/trunk/netsurf/; revision=3904
* Fix clear CSS property support when applied on floats.Michael Drake2008-03-091-5/+20
| | | | svn path=/trunk/netsurf/; revision=3902
* Round percentage width to nearest pixel with integers.Michael Drake2008-03-081-2/+3
| | | | svn path=/trunk/netsurf/; revision=3901
* Fix float wrapping when available space equals space that would be used by ↵Michael Drake2008-03-071-1/+1
| | | | | | float. svn path=/trunk/netsurf/; revision=3898
* No space between rows of floats.Michael Drake2008-03-071-4/+4
| | | | svn path=/trunk/netsurf/; revision=3895
* Round percentage widths to nearest pixel instead of down.Michael Drake2008-03-061-2/+2
| | | | svn path=/trunk/netsurf/; revision=3891
* Centered tables are a special case.Michael Drake2008-03-051-1/+15
| | | | svn path=/trunk/netsurf/; revision=3880
* Squash warning.Michael Drake2008-03-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=3875
* Periodically reflow the page while fetching a page's objects. Make buffer ↵Michael Drake2008-02-291-6/+22
| | | | | | all rendering default. svn path=/trunk/netsurf/; revision=3874
* Fix align attributes on TABLE etc being overridden in the table's cells by ↵Michael Drake2008-02-281-4/+15
| | | | | | the default alignment of cells with no align attribute. svn path=/trunk/netsurf/; revision=3873
* Make content_reset actually do what it's meant to (i.e. reset the ↵John Mark Bell2008-02-271-1/+6
| | | | | | | | appropriate members) Fix up CONTENT_MSG_REFRESH scheduled events to gracefully the refresh URL disappearing from under them. svn path=/trunk/netsurf/; revision=3870
* Don't meddle with blockquote's margins.Michael Drake2008-02-261-2/+3
| | | | svn path=/trunk/netsurf/; revision=3869
* SignednessWarnings.squash()John Mark Bell2008-02-254-66/+77
| | | | | | Aside from a number of instances of const being cast away (mostly relating to the urldb, which is correct to only export const data) this now builds warning-free with GCC 4 on x86, which is nice. svn path=/trunk/netsurf/; revision=3868
* Improve handling of HTML attributes / markup:Michael Drake2008-02-252-216/+392
| | | | | | | | | | | | | | | | | | | | | * Only apply presentational HTML attributes if no more important CSS has been set for the property. (NetSurf used to be a bit hit-and-miss when presentational markup and CSS were mixed.) * Change table cellpadding and border handling to happen as soon the boxes styles are available, rather than after the whole table has been constructed. Also fix default table border colour. * Improve handling of CENTER tag and ALIGN attribute. These could not be correctly supported in the default CSS file, so block level element alignment is now done during box construction. (Fixes #1891379, #1824492, #1723853) Form improvements: * Small MAXLENGTH values on text inputs now reduce element width. (Fixes #1894854) * Prevent select option text from wrapping. svn path=/trunk/netsurf/; revision=3866
* Also flag box as invisible so it'll have no effect on layoutJohn Mark Bell2008-02-251-0/+1
| | | | svn path=/trunk/netsurf/; revision=3864
* Ignore spurious top-level framesets correctly (previously declared memory ↵John Mark Bell2008-02-251-1/+5
| | | | | | exhaustion, which is obviously wrong) svn path=/trunk/netsurf/; revision=3863
* For form gadgets, specified percentage width is inclusive of margin, border ↵Michael Drake2008-02-171-9/+23
| | | | | | and padding space. svn path=/trunk/netsurf/; revision=3859
* Select element width is width of longest option text.Michael Drake2008-02-111-8/+60
| | | | svn path=/trunk/netsurf/; revision=3855
* Prevent tabbing into textfields whose styling is display: none;John Mark Bell2008-02-071-0/+10
| | | | svn path=/trunk/netsurf/; revision=3849
* Improve float positioning.Michael Drake2008-02-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=3833
* Turn debug output off again. Remove extraneous include.Michael Drake2008-02-031-2/+1
| | | | svn path=/trunk/netsurf/; revision=3828
* Ensure min line length takes into account margins, borders and paddings of ↵Michael Drake2008-02-031-2/+7
| | | | | | objects. svn path=/trunk/netsurf/; revision=3827
* Add url_fragment to extract fragment from URLJohn Mark Bell2008-02-031-2/+2
| | | | | | | | Optionally allow url_compare to ignore fragments in comparison Fix handling of url_compare result in a few places Fix redirects which contain fragments in the Location header svn path=/trunk/netsurf/; revision=3826
* Make text input boxes with height:auto; and no initial value get a sensible ↵Michael Drake2008-02-021-41/+12
| | | | | | height. Make all form elements have their dimensions based on the configured minimum font size, if the current text size is smaller. Remove redundant code for setting radio icon and checkbox sizes. All em/ex based sizes now respect the min font size, when it's in effect. Updated default styles for form elements. svn path=/trunk/netsurf/; revision=3813
* Fix syntax.Michael Drake2008-01-291-1/+1
| | | | svn path=/trunk/netsurf/; revision=3800
* Reinstate things lost in the last checkins.Michael Drake2008-01-291-3/+5
| | | | svn path=/trunk/netsurf/; revision=3799
* No need to recalculate a value we already have.Michael Drake2008-01-291-10/+5
| | | | svn path=/trunk/netsurf/; revision=3798
* Apply min font size config option to radio icons and checkboxes.Michael Drake2008-01-291-13/+47
| | | | svn path=/trunk/netsurf/; revision=3797
* Make box dump show "gadget".Michael Drake2008-01-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=3796
* Render borders after backgrounds. Handle boxes with overflow hidden or ↵James Bursa2008-01-281-45/+67
| | | | | | scroll and borders correctly. Update copyrights. svn path=/trunk/netsurf/; revision=3792
* Recurse into noscript elements when looking for meta refresh. This would ↵John Mark Bell2008-01-281-1/+13
| | | | | | work perfectly, were it not for libxml's html parser terminating head and starting body on sight of a noscript tag. Joy. svn path=/trunk/netsurf/; revision=3791
* Only needed the vertical position changed.Michael Drake2008-01-281-1/+3
| | | | svn path=/trunk/netsurf/; revision=3789
* Rework handling of HTTP redirects -- we now count the number of redirects ↵John Mark Bell2008-01-282-63/+0
| | | | | | | | | | | | | | | | | | | | followed for a given item and abort if a fixed limit is reached. This fixes sites which have pages that redirect to themselves. Redirect handling is now transparent to clients of fetchcache. The new scheme works as follows: 1) Request content for URL (fetchcache() 2) Start fetch of content (fetchcache_go() 3) If no redirect, continue through LOADING, READY, DONE etc. states as before If redirect, receive NEWPTR for each redirect that occurs, then continue through LOADING, READY, DONE etc. states as before. The upshot of this is that redirects result in extra contents being created. It also means that, until LOADING has been received, the content (and thus the URL being fetched) may change. Therefore, fetchcache clients should expect to have to deal with transient data prior to LOADING occurring. As a necessary side-effect of this, the HTML object URLs and CSS @import URLs are no longer stored alongside the relevant contents. These URLs can be accessed by interrogating the url member of struct content anyway, so it was a rather redundant scheme before. svn path=/trunk/netsurf/; revision=3787
* Replace accidentally checked in files with previous ones.Michael Drake2008-01-281-6/+0
| | | | svn path=/trunk/netsurf/; revision=3786
* Fix vertical position of images with margin/borders/padding.Michael Drake2008-01-282-1/+8
| | | | svn path=/trunk/netsurf/; revision=3785
* Ensure images within inline-blocks are shown properly. Fixed by zamez.Michael Drake2008-01-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=3783
* Revert r3781.Michael Drake2008-01-271-4/+0
| | | | svn path=/trunk/netsurf/; revision=3782
* Background area extends to border edge.Michael Drake2008-01-271-0/+4
| | | | svn path=/trunk/netsurf/; revision=3781
* Background area extends to border edge.Michael Drake2008-01-271-34/+38
| | | | svn path=/trunk/netsurf/; revision=3780