summaryrefslogtreecommitdiff
path: root/css
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix matching of universal element selectorsJohn Mark Bell2011-03-121-2/+6
| | | | svn path=/trunk/netsurf/; revision=11979
* Sync API with modern libcssJohn Mark Bell2011-03-121-59/+68
| | | | svn path=/trunk/netsurf/; revision=11977
* Saturated maths in css fixed point Vincent Sanders2011-03-122-20/+19
| | | | svn path=/trunk/netsurf/; revision=11975
* Fix bug #3194007: stop emitting duplicate READY/DONE events.John Mark Bell2011-02-271-8/+19
| | | | | | | * Make content handlers responsible for setting READY/DONE state & emitting events. * Stop content_convert doing this when there is a registered convert function for the content type. svn path=/trunk/netsurf/; revision=11850
* Clean up blank_import on exitJohn Mark Bell2011-02-262-2/+11
| | | | svn path=/trunk/netsurf/; revision=11818
* Parallelise fetch and conversion of imported stylesheetsJohn Mark Bell2011-02-262-182/+252
| | | | svn path=/trunk/netsurf/; revision=11817
* Fix bug #3171370: initialise font resolution callback pointersJohn Mark Bell2011-02-032-0/+6
| | | | svn path=/trunk/netsurf/; revision=11608
* Fix :root detectionJohn Mark Bell2011-01-311-1/+2
| | | | svn path=/trunk/netsurf/; revision=11571
* Various fixes for selection callbacksJohn Mark Bell2011-01-311-105/+132
| | | | svn path=/trunk/netsurf/; revision=11570
* Sync selection engine binding with latest libcssJohn Mark Bell2011-01-311-5/+329
| | | | svn path=/trunk/netsurf/; revision=11561
* add default system colour handlers to each frontendVincent Sanders2011-01-302-3/+4
| | | | svn path=/trunk/netsurf/; revision=11530
* Add ability to dump opacity property, tooJohn Mark Bell2011-01-291-0/+14
| | | | svn path=/trunk/netsurf/; revision=11528
* Port to latest libcssJohn Mark Bell2011-01-292-27/+9
| | | | svn path=/trunk/netsurf/; revision=11526
* Reflect new css_stylesheet_create APIJohn Mark Bell2011-01-292-13/+46
| | | | svn path=/trunk/netsurf/; revision=11523
* Fix attempt to destroy selection resutls that don't exist.Michael Drake2011-01-051-2/+1
| | | | svn path=/trunk/netsurf/; revision=11216
* Update to new libcss API for simultanious selection for base element and its ↵Michael Drake2011-01-052-18/+11
| | | | | | pseudo elements. svn path=/trunk/netsurf/; revision=11215
* Make function only used in the selection code private.Michael Drake2011-01-042-3/+3
| | | | svn path=/trunk/netsurf/; revision=11193
* Reflect changes to libcss APIJohn Mark Bell2010-12-052-1/+3
| | | | svn path=/trunk/netsurf/; revision=11001
* Fix coloursJohn Mark Bell2010-12-042-157/+159
| | | | svn path=/trunk/netsurf/; revision=10989
* Only invoke callback when we successfully converted CSS data.John Mark Bell2010-07-011-2/+11
| | | | svn path=/trunk/netsurf/; revision=10592
* Consolidate several 'myrealloc' functions into ns_realloc, rename one which ↵Daniel Silverstone2010-04-301-20/+3
| | | | | | *is* different, thereby eliminating the word 'myrealloc' from the NS codebase svn path=/trunk/netsurf/; revision=10530
* It turns out that realloc(ptr, 0) --> free(ptr) is not actually required by ↵John Mark Bell2010-04-301-0/+5
| | | | | | | | the C standard (whereas realloc(NULL, size) --> malloc(size) is). Therefore, explicitly model the behaviour expected by our libraries (that realloc of 0 size is equivalent to free). svn path=/trunk/netsurf/; revision=10524
* Unref uri after sending it to hlcache when requesting a css pending import, ↵Daniel Silverstone2010-04-271-0/+3
| | | | | | so that we don't leak the uris svn path=/trunk/netsurf/; revision=10503
* Fix it so that empty charset strings fall back properly. Fixes ↵Daniel Silverstone2010-04-221-1/+1
| | | | | | http://www.arm.com/community/partners/all_partners.php svn path=/trunk/netsurf/; revision=10452
* Check correct variable for error.John Mark Bell2010-04-181-1/+1
| | | | svn path=/trunk/netsurf/; revision=10428
* Now that we own imported stylesheets, we can get away with allocating a ↵John Mark Bell2010-04-111-7/+14
| | | | | | single blank import and registering that. svn path=/trunk/netsurf/; revision=10370
* Pedantic line breakJohn Mark Bell2010-04-111-1/+2
| | | | svn path=/trunk/netsurf/; revision=10368
* Merge jmb/kill-reentrancy. r=vinceJohn Mark Bell2010-04-112-109/+203
| | | | svn path=/trunk/netsurf/; revision=10346
* Cover our backs in the charset == NULL caseDaniel Silverstone2010-04-081-0/+2
| | | | svn path=/trunk/netsurf/; revision=10319
* Allow nscss to retain charset and nscss_clone to use itDaniel Silverstone2010-04-082-4/+7
| | | | svn path=/trunk/netsurf/; revision=10318
* Prevent assertion when imported stylesheet fails to load.John Mark Bell2010-04-061-4/+6
| | | | svn path=/trunk/netsurf/; revision=10256
* Make the high-level cache drop contents of unacceptable type on the floor.John Mark Bell2010-04-041-1/+3
| | | | svn path=/trunk/netsurf/; revision=10238
* Most of a stop implementation.John Mark Bell2010-04-042-0/+29
| | | | | | | | | Remaining work: 1) Clone content_html_data 2) Cloning content_css_data requires the charset of the old content 3) Calling hlcache_handle_abort() before a content has been created must clean up the retrieval context. svn path=/trunk/netsurf/; revision=10236
* Constify data parameter to *_process_dataJohn Mark Bell2010-04-032-4/+4
| | | | svn path=/trunk/netsurf/; revision=10234
* The convert stage of a content's state progression no longer reflows the ↵John Mark Bell2010-03-292-10/+6
| | | | | | | | | | | | | content to the provided dimensions. It is now defined as converting the content into a state in which it is ready for use. The user of the content is now responsible for performing an initial reformat (sic) of the content before it can be redrawn. Purge width/height parameters from hlcache_handle_retrieve/content_convert/*_convert APIs. Fix up content handlers affected by the above change in semantics. Ensure that browser_window_callback performs an initial reformat of its content. svn path=/trunk/netsurf/; revision=10207
* Only obey size property on input elements that are either text or password. ↵Rob Kendrick2010-03-281-0/+4
| | | | | | Fixes submit buttons with size properties being too small/large. svn path=/trunk/netsurf/; revision=10191
* Replace fetch_poll with llcache_poll throughout. Allow CONTENT_OTHER to ↵Daniel Silverstone2010-03-281-1/+1
| | | | | | complete properly. svn path=/trunk/netsurf/; revision=10187
* Merge jmb/new-cache; r=dsilvers,rs=vinceDaniel Silverstone2010-03-286-269/+241
| | | | svn path=/trunk/netsurf/; revision=10180
* Fix erroneous switch fallthroughJohn Mark Bell2009-11-221-0/+2
| | | | svn path=/trunk/netsurf/; revision=9694
* Log failuresJohn Mark Bell2009-10-121-1/+6
| | | | svn path=/trunk/netsurf/; revision=9629
* Yet more case insensitivityJohn Mark Bell2009-09-061-1/+1
| | | | svn path=/trunk/netsurf/; revision=9549
* Fix for percentage values.Michael Drake2009-09-051-2/+4
| | | | svn path=/trunk/netsurf/; revision=9546
* Remove redundant line.Michael Drake2009-09-051-1/+0
| | | | svn path=/trunk/netsurf/; revision=9545
* Fix table border=0.Michael Drake2009-09-051-5/+6
| | | | svn path=/trunk/netsurf/; revision=9544
* Fix defualt table cell border width and move border style from default css ↵Michael Drake2009-09-051-33/+46
| | | | | | to code. svn path=/trunk/netsurf/; revision=9543
* Attribute value comparisons should be case insensitiveJohn Mark Bell2009-09-051-32/+38
| | | | svn path=/trunk/netsurf/; revision=9537
* Sync with libcss.John Mark Bell2009-08-231-2/+2
| | | | svn path=/trunk/netsurf/; revision=9406
* Fix buildJohn Mark Bell2009-08-221-22/+9
| | | | svn path=/trunk/netsurf/; revision=9392
* Use new alignment schemeJohn Mark Bell2009-08-221-82/+81
| | | | svn path=/trunk/netsurf/; revision=9390
* Support HTML alignment hints.John Mark Bell2009-08-212-15/+304
| | | | svn path=/trunk/netsurf/; revision=9381