summaryrefslogtreecommitdiff
path: root/css
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug fixes in parse_length, parse_clip, css_dump_style, css_dump_length by ↵James Bursa2007-10-282-9/+7
| | | | | | Franz Korntner. svn path=/trunk/netsurf/; revision=3635
* No longer assert on invalid input to hex_colour.Richard Wilson2007-10-091-2/+1
| | | | svn path=/trunk/netsurf/; revision=3626
* Fix parsing of invalid colour values becoming CSS_COLOR_NONE. Make all ↵Richard Wilson2007-10-092-48/+71
| | | | | | colour parsing code common. svn path=/trunk/netsurf/; revision=3625
* Allow hex CSS colour values with omitted hash. Fix #rgb and #rrggbb handling ↵Michael Drake2007-10-031-2/+34
| | | | | | to only accept hex characters. svn path=/trunk/netsurf/; revision=3620
* Remove restriction of @import coming at the start, because multiple inline ↵James Bursa2007-10-021-1/+1
| | | | | | stylesheets are parsed as one stylesheet, so may contain @import in the middle. svn path=/trunk/netsurf/; revision=3616
* Provide the facility to set the DPI of the display by removing the ↵Daniel Silverstone2007-08-192-10/+17
| | | | | | assumptions of 90.0 dpi from the CSS and layout engines. svn path=/trunk/netsurf/; revision=3528
* Update all source code file headers to reflect GPL version 2 only and ↵Vincent Sanders2007-08-083-10/+42
| | | | | | contain appropriate licence text svn path=/trunk/netsurf/; revision=3486
* Remove the netsurf/ from the include paths and rationalise use of <> vs "" ↵Daniel Silverstone2007-05-305-24/+24
| | | | | | | | | | | | | | in includes NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307
* Fix various warnings.James Bursa2007-05-021-10/+11
| | | | svn path=/trunk/netsurf/; revision=3263
* Fix invalidation of unwanted contents.John Mark Bell2007-03-191-0/+11
| | | | svn path=/trunk/netsurf/; revision=3214
* Lose noisy loggingJohn Mark Bell2007-03-181-1/+0
| | | | svn path=/trunk/netsurf/; revision=3213
* Ensure content structures are zero initialised.John Mark Bell2007-03-181-5/+8
| | | | | | | | | Make css_destroy check that the stylesheet pointer exists (content destructors may be called whilst the content is still loading - e.g. if the content type isn't permissable in the context it was loaded from). Fixes 1627413, 1580980. svn path=/trunk/netsurf/; revision=3212
* Ensure content owners check that they are still interested in a content John Mark Bell2007-03-181-3/+10
| | | | | | | | when receiving notification that the content's in error. This prevents content pointers being corrupted when redirects occur. Fixes 1522002, 1551475. svn path=/trunk/netsurf/; revision=3211
* Content handlers should not call warn_user - they should broadcast the John Mark Bell2007-03-111-2/+0
| | | | | | | | | | error using content_broadcast and leave it to the content owner(s) to decide what to do about it. Only use warn_user for top-level contents. svn path=/trunk/netsurf/; revision=3204
* Remove .cvsignore files, and replicate functionality with svn:ignore attributesRob Kendrick2007-02-041-6/+0
| | | | svn path=/trunk/netsurf/; revision=3166
* Fix handling of cookies in unverifiable transactions caused by a redirect ↵John Mark Bell2007-02-021-2/+2
| | | | | | from a fetch into a browser window which was varifiable. svn path=/trunk/netsurf/; revision=3165
* Make GTK build compile on FreeBSD.James Bursa2007-01-293-2/+3
| | | | svn path=/trunk/netsurf/; revision=3154
* Update project URL.Michael Drake2006-11-276-6/+6
| | | | svn path=/trunk/netsurf/; revision=3073
* Fix accidental press of delete :-sRichard Wilson2006-08-151-1/+1
| | | | svn path=/trunk/netsurf/; revision=2852
* Treat unitless CSS values as pixels (fix 1527056)Richard Wilson2006-08-151-4/+9
| | | | svn path=/trunk/netsurf/; revision=2851
* Fix the small NetSurf build.Richard Wilson2006-07-041-1/+4
| | | | svn path=/trunk/netsurf/; revision=2714
* Don't assert() for AUTH or SSL codes (fix 1498477)Richard Wilson2006-07-041-0/+3
| | | | svn path=/trunk/netsurf/; revision=2713
* Fix background: parsing & lose potential memory leakJohn Mark Bell2006-06-281-3/+9
| | | | svn path=/trunk/netsurf/; revision=2660
* [project @ 2006-03-19 17:49:32 by dsilvers]Daniel Silverstone2006-03-191-1/+1
| | | | | | Add support for a few more CSS cursors and tidy the GUI_POINTER_* stuff to support what we already had svn path=/import/netsurf/; revision=2135
* [project @ 2006-03-17 02:08:42 by jmb]John Mark Bell2006-03-171-44/+68
| | | | | | Fix behaviour of clip property parser when presented with invalid data svn path=/import/netsurf/; revision=2133
* [project @ 2006-03-09 19:04:13 by dsilvers]Daniel Silverstone2006-03-092-0/+30
| | | | | | | css.[ch]: Add css_len2pt to convert a CSS length to points for use on systems which actually recognise that DPI might not be 90 all the time. svn path=/import/netsurf/; revision=2114
* [project @ 2006-02-11 21:58:56 by jmb]John Mark Bell2006-02-111-1/+1
| | | | | | Permit negative text indent svn path=/import/netsurf/; revision=2075
* [project @ 2006-02-05 22:22:35 by jmb]John Mark Bell2006-02-051-4/+7
| | | | | | Fix bad read svn path=/import/netsurf/; revision=2057
* [project @ 2006-01-02 23:31:28 by jmb]John Mark Bell2006-01-021-1/+1
| | | | | | Implement font default option properly svn path=/import/netsurf/; revision=1969
* [project @ 2005-08-21 12:04:17 by bursa]James Bursa2005-08-211-10/+13
| | | | | | Change void * parameters to intptr_t to make them correct for storing integers or pointers. svn path=/import/netsurf/; revision=1852
* [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 22:06:03 by jmb]John Mark Bell2005-07-313-4/+7
| | | | | | Ignore @import rules which occur after a valid rule. svn path=/import/netsurf/; revision=1835
* [project @ 2005-07-31 15:55:36 by jmb]John Mark Bell2005-07-312-9/+12
| | | | | | | | Make length -> pixel conversion more accurate. Fix handling of CSS <numbers> Fix border widths. svn path=/import/netsurf/; revision=1832
* [project @ 2005-05-22 21:50:14 by bursa]James Bursa2005-05-221-1/+1
| | | | | | 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-21 23:30:19 by bursa]James Bursa2005-05-213-684/+834
| | | | | | 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-04-20 03:58:40 by rjw]Richard Wilson2005-04-201-5/+10
| | | | | | Fix parsing of 0 values without a unit for background-position and font-size. svn path=/import/netsurf/; revision=1672
* [project @ 2005-04-14 19:54:24 by rjw]Richard Wilson2005-04-142-5/+90
| | | | | | Implement HTML table border setting. Improve support for the collapsing border model. svn path=/import/netsurf/; revision=1632
* [project @ 2005-04-09 09:47:36 by bursa]James Bursa2005-04-093-48/+24
| | | | | | Move HTML contents almost fully over to talloc(), simplifying code. Improvements to title attributes, broken forms, cellpadding. Reorder functions in box_construct.c. svn path=/import/netsurf/; revision=1608
* [project @ 2005-04-03 14:17:05 by bursa]James Bursa2005-04-031-1/+3
| | | | | | Use talloc_realloc() instead of realloc() for c->source_data, since that is now managed by talloc. svn path=/import/netsurf/; revision=1593
* [project @ 2005-03-23 18:14:38 by rjw]Richard Wilson2005-03-231-1/+17
| | | | | | Fix incorrect background position calculations. Modify CSS parser to pass all background-position testcases. svn path=/import/netsurf/; revision=1574
* [project @ 2005-03-22 00:10:42 by rjw]Richard Wilson2005-03-223-14/+38
| | | | | | Experimental cellpadding support svn path=/import/netsurf/; revision=1569
* [project @ 2005-02-19 23:40:15 by bursa]James Bursa2005-02-192-8/+10
| | | | | | Add const qualifiers to css_len2px arguments. svn path=/import/netsurf/; revision=1516
* [project @ 2005-01-24 23:02:37 by bursa]James Bursa2005-01-241-0/+2
| | | | | | Reformat pages loaded from memory cache to window width. svn path=/import/netsurf/; revision=1467
* [project @ 2005-01-17 23:06:33 by rjw]Richard Wilson2005-01-171-22/+28
| | | | | | Fix URI memory leakage svn path=/import/netsurf/; revision=1458
* [project @ 2005-01-16 21:39:21 by rjw]Richard Wilson2005-01-163-3/+394
| | | | | | Read content, counter-reset and counter-increment properties. svn path=/import/netsurf/; revision=1456
* [project @ 2005-01-16 00:48:47 by jmb]John Mark Bell2005-01-161-29/+15
| | | | | | Fixup my inability to remember how things should work svn path=/import/netsurf/; revision=1453
* [project @ 2005-01-16 00:08:47 by jmb]John Mark Bell2005-01-161-3/+1
| | | | | | Fixup missed css_style free svn path=/import/netsurf/; revision=1451
* [project @ 2005-01-16 00:03:45 by jmb]John Mark Bell2005-01-163-3/+71
| | | | | | Create interface for duplication and destruction of css_style structs. svn path=/import/netsurf/; revision=1450
* [project @ 2005-01-15 22:11:53 by rjw]Richard Wilson2005-01-151-1/+6
| | | | | | Background work for CSS counters (CSS 2.1/12.4) svn path=/import/netsurf/; revision=1449
* [project @ 2005-01-11 19:39:49 by jmb]John Mark Bell2005-01-113-247/+577
| | | | | | Handle property: inherit; properly svn path=/import/netsurf/; revision=1441