summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* [project @ 2005-08-07 21:28:48 by bursa]James Bursa2005-08-074-31/+24
| | | | | | Improvements to frames. Fix bug with BR at end of inline container. svn path=/import/netsurf/; revision=1843
* [project @ 2005-08-06 23:34:30 by bursa]James Bursa2005-08-061-1/+5
| | | | | | Fix vertical positioning of floats when an empty block with top padding is present. svn path=/import/netsurf/; revision=1842
* [project @ 2005-08-06 22:29:30 by bursa]James Bursa2005-08-061-2/+7
| | | | | | Use given width as initial min/max width of fixed-width table columns. This improves the layout of certain tables with colspans. svn path=/import/netsurf/; revision=1841
* [project @ 2005-08-04 22:51:42 by bursa]James Bursa2005-08-041-0/+1
| | | | | | Fix strndup() compiler warnings. svn path=/import/netsurf/; revision=1840
* [project @ 2005-07-31 21:57:07 by bursa]James Bursa2005-07-311-1/+12
| | | | | | Implement clear on <br>. svn path=/import/netsurf/; revision=1834
* [project @ 2005-07-31 11:21:46 by bursa]James Bursa2005-07-311-9/+7
| | | | | | Fix certain cases of relative positioning, and make the recursion more efficient (don't recurse for BOX_TEXT). svn path=/import/netsurf/; revision=1831
* [project @ 2005-07-30 23:32:48 by jmb]John Mark Bell2005-07-301-1/+132
| | | | | | Position: relative; support. svn path=/import/netsurf/; revision=1830
* [project @ 2005-07-27 22:49:53 by jmb]John Mark Bell2005-07-271-0/+11
| | | | | | Mark invalid CSS contents with an error so they get flushed from the cache. svn path=/import/netsurf/; revision=1828
* [project @ 2005-07-24 14:29:32 by bursa]James Bursa2005-07-241-5/+12
| | | | | | Fix position of certain floats. svn path=/import/netsurf/; revision=1822
* [project @ 2005-07-21 21:48:41 by bursa]James Bursa2005-07-212-2/+27
| | | | | | Fix layout min max bug with blocks with negative margins. Add assert()s to check that 0 <= min_width <= max_width at the end of each layout_minmax_X() function. svn path=/import/netsurf/; revision=1813
* [project @ 2005-07-20 22:25:56 by bursa]James Bursa2005-07-201-0/+10
| | | | | | Fix fixed width table min / max width calculations. svn path=/import/netsurf/; revision=1811
* [project @ 2005-07-20 22:08:56 by bursa]James Bursa2005-07-201-2/+4
| | | | | | Fix min / max bug with negative margins (treat as 0 for now). svn path=/import/netsurf/; revision=1810
* [project @ 2005-07-18 16:38:59 by adrianl]Adrian Lees2005-07-181-92/+155
| | | | | | Fix text selection jitter svn path=/import/netsurf/; revision=1804
* [project @ 2005-07-18 14:22:26 by jmb]John Mark Bell2005-07-181-1/+1
| | | | | | Fix erroneous attempt to uppercase address of character instead of the character itself svn path=/import/netsurf/; revision=1802
* [project @ 2005-07-06 19:56:34 by bursa]James Bursa2005-07-061-2/+3
| | | | | | Fix broken code in table_find_cell(). svn path=/import/netsurf/; revision=1788
* [project @ 2005-07-03 15:57:10 by jmb]John Mark Bell2005-07-031-5/+16
| | | | | | Handle forms with no action attribute svn path=/import/netsurf/; revision=1783
* [project @ 2005-07-02 23:37:41 by bursa]James Bursa2005-07-021-42/+50
| | | | | | Improvements to layout_minmax_line(). Fix width of floats / inline blocks without an explicit width (space for margins, borders, padding was added twice). svn path=/import/netsurf/; revision=1781
* [project @ 2005-07-02 20:08:24 by bursa]James Bursa2005-07-021-0/+7
| | | | | | Fix hidden form inputs being rendered. svn path=/import/netsurf/; revision=1780
* [project @ 2005-07-02 18:19:41 by bursa]James Bursa2005-07-022-0/+2
| | | | | | Fix copyright comments. svn path=/import/netsurf/; revision=1779
* [project @ 2005-07-02 18:17:51 by bursa]James Bursa2005-07-024-679/+490
| | | | | | Rewrite calculation of box minimum and maximum widths to improve layout of many pages. Move calculation of column types and border collapsing to box tree normalising stage, since they are layout independent. Add window height parameter to layout and make <html> and <body> at least window height. svn path=/import/netsurf/; revision=1777
* [project @ 2005-07-02 18:06:10 by bursa]James Bursa2005-07-022-0/+391
| | | | | | New files for some table layout functions. svn path=/import/netsurf/; revision=1776
* [project @ 2005-07-02 17:58:32 by bursa]James Bursa2005-07-021-1/+2
| | | | | | Bring comment showing permitted child nodes up to date. svn path=/import/netsurf/; revision=1775
* [project @ 2005-07-02 17:49:40 by bursa]James Bursa2005-07-021-0/+11
| | | | | | Display contents of table->col[] in box_dump(). svn path=/import/netsurf/; revision=1774
* [project @ 2005-06-26 22:18:37 by jmb]John Mark Bell2005-06-261-9/+37
| | | | | | | Improve clarity of use of utf8_to_enc. Remove use of curl_escape - url_escape does similar things, just better. svn path=/import/netsurf/; revision=1766
* [project @ 2005-06-26 01:55:20 by jmb]John Mark Bell2005-06-263-41/+117
| | | | | | | | Move acceptable character set determination to form submission time, rather thanat box tree creation time. Use UTF-8 encoding, if specified, else use first specified encoding. Improve use of utf8_to_enc - falling back to document encoding then 8859-1 where appropriate. svn path=/import/netsurf/; revision=1765
* [project @ 2005-06-23 17:22:28 by rjw]Richard Wilson2005-06-231-0/+5
| | | | | | Allow images to be unloaded to disk or compressed in memory. Provide thumbnails in all tree windows (hotlist, history). Optimise the application initialisation times. Part 1 of 2. svn path=/import/netsurf/; revision=1761
* [project @ 2005-06-07 22:52:56 by bursa]James Bursa2005-06-071-1/+1
| | | | | | Fix bug causing an extra line to be inserted for <br> at the end of a paragraph. svn path=/import/netsurf/; revision=1746
* [project @ 2005-06-07 21:29:26 by jmb]John Mark Bell2005-06-071-4/+13
| | | | | | | Lose cnv_str_local_enc and friends. UTF-8 conversion functions now return an enumerated type allowing for fallbacks, if appropriate. svn path=/import/netsurf/; revision=1744
* [project @ 2005-06-05 20:54:37 by bursa]James Bursa2005-06-056-47/+98
| | | | | | More work on borders / padding / margins on inline elements. Add BOX_INLINE_END to hold the right border / padding / margin (left is in the BOX_INLINE). svn path=/import/netsurf/; revision=1742
* [project @ 2005-06-04 12:12:38 by bursa]James Bursa2005-06-045-26/+26
| | | | | | Fix text-decoration and borders on inline elements by replacing inline_parent in box structure with end_inline_children. svn path=/import/netsurf/; revision=1741
* [project @ 2005-05-25 23:06:26 by jmb]John Mark Bell2005-05-251-2/+2
| | | | | | Fix textarea submission svn path=/import/netsurf/; revision=1740
* [project @ 2005-05-24 20:21:47 by bursa]James Bursa2005-05-241-9/+9
| | | | | | Convert remaining BOX_INLINEs in forms to BOX_TEXT. svn path=/import/netsurf/; revision=1736
* [project @ 2005-05-23 22:14:09 by bursa]James Bursa2005-05-232-151/+241
| | | | | | Start to implement borders on inline elements. Note: borders of form controls are rendered incorrectly (text boxes in form controls need changing from INLINE to TEXT). svn path=/import/netsurf/; revision=1734
* [project @ 2005-05-22 22:16:00 by jmb]John Mark Bell2005-05-221-1/+1
| | | | | | Fix inversion of overline and line-through plot offsets svn path=/import/netsurf/; revision=1733
* [project @ 2005-05-22 21:50:14 by bursa]James Bursa2005-05-226-57/+176
| | | | | | Add BOX_TEXT type to distinguish boxes which came from an inline element to boxes which came from a text node. Add inline_parent pointer to box structure. Rewrite text-decoration support to take advantage of the new data (line colours are now correct). Note: there is a clipping issue in redraw. svn path=/import/netsurf/; revision=1732
* [project @ 2005-05-22 19:09:43 by bursa]James Bursa2005-05-221-0/+1
| | | | | | Fix crash due to uninitialised variable. svn path=/import/netsurf/; revision=1731
* [project @ 2005-05-22 12:44:44 by bursa]James Bursa2005-05-221-2/+3
| | | | | | Fix crash when stylesheets fail to load. svn path=/import/netsurf/; revision=1730
* [project @ 2005-05-21 23:30:19 by bursa]James Bursa2005-05-213-10/+26
| | | | | | Improve selector specificity support by adding "working stylesheets" with pre-sorted lists of rules. This also simplifies css_get_style(). The stylesheet origin is now encoded in the specificity. Improve output of css_dump_style(). svn path=/import/netsurf/; revision=1729
* [project @ 2005-05-16 00:55:43 by jmb]John Mark Bell2005-05-161-2/+3
| | | | | | Fix issue with erroneously appending a space to the end of every line of textarea input - should we actually be examining box->space here, instead? svn path=/import/netsurf/; revision=1724
* [project @ 2005-05-15 17:37:00 by jmb]John Mark Bell2005-05-151-1/+1
| | | | | | Fix read from NULL pointer svn path=/import/netsurf/; revision=1723
* [project @ 2005-05-11 02:03:15 by jmb]John Mark Bell2005-05-111-3/+9
| | | | | | Correctly handle submitting forms via pressing return in a text input (the first declared submit button should be used) svn path=/import/netsurf/; revision=1719
* [project @ 2005-05-11 01:34:41 by rjw]Richard Wilson2005-05-111-11/+10
| | | | | | Fix for default checkbox submit value. svn path=/import/netsurf/; revision=1718
* [project @ 2005-04-30 17:11:24 by bursa]James Bursa2005-04-301-4/+5
| | | | | | Check box->background before using box->background->bitmap. svn path=/import/netsurf/; revision=1706
* [project @ 2005-04-29 01:34:19 by rjw]Richard Wilson2005-04-291-133/+165
| | | | | | Improve table rendering. svn path=/import/netsurf/; revision=1698
* [project @ 2005-04-29 01:33:50 by rjw]Richard Wilson2005-04-291-2/+40
| | | | | | Correctly respect tr heights svn path=/import/netsurf/; revision=1697
* [project @ 2005-04-28 15:57:07 by rjw]Richard Wilson2005-04-281-2/+2
| | | | | | Unbreak HTML table border specification. svn path=/import/netsurf/; revision=1695
* [project @ 2005-04-28 02:35:03 by rjw]Richard Wilson2005-04-282-18/+27
| | | | | | HTML border attributes have lower priority that CSS values (fix osnews). Disable tr height minimum value usage for now. svn path=/import/netsurf/; revision=1694
* [project @ 2005-04-28 01:50:55 by rjw]Richard Wilson2005-04-281-5/+9
| | | | | | Respect minimum height for tr. svn path=/import/netsurf/; revision=1693
* [project @ 2005-04-28 01:17:52 by rjw]Richard Wilson2005-04-281-1/+45
| | | | | | Translate hspace/vspace to CSS margin values. svn path=/import/netsurf/; revision=1692
* [project @ 2005-04-27 19:13:30 by bursa]James Bursa2005-04-271-2/+4
| | | | | | Fix cellpadding="0". svn path=/import/netsurf/; revision=1688