summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* HTML handler: Avoid unnecessary dom_string_caseless_isequal call.Michael Drake2017-06-101-9/+11
|
* Layout: Prevent negative widths on absolutle positioned boxes.Michael Drake2017-06-021-6/+6
|
* clean up doccomments and formatting in texplain content handlerVincent Sanders2017-06-012-484/+536
| | | | | | There is an intention to replace the render interface and it will be helpful to reduce the size of the exposed API as much as possible. This is the first step towards that goal.
* Layout: Fix auto margins to be affected by {min|max}-width constraints.Michael Drake2017-04-281-8/+20
|
* Layout: Implement CSS3 box-sizing property.Michael Drake2017-04-271-60/+94
| | | | | Updates user agent CSS to set form element box-sizing properties, and removes some legacy pre-CSS3 hacks for handling gadget dimensions.
* HTML layout: Extend :after pseudo element handling to cover display:table.Michael Drake2017-04-261-2/+5
| | | | | | This is used in a common clearfix variant. http://nicolasgallagher.com/micro-clearfix-hack/
* Box tree dump: If box has element, include element name in dump.Michael Drake2017-04-261-1/+8
|
* HTML content handler: Don't let aborted contents get stuck in LOADING.Michael Drake2017-03-231-0/+1
| | | | | | | Previously, aborted HTML fetches left the content in LOADING state, and the hlcache clean code does not clean contents in the LOADING state. They, and their child contents ended up stuck in the cache forever.
* HTML object fetch handler: Remove bogus parent content state assertion.Michael Drake2017-03-231-2/+0
|
* Improve content logging with content IDs (pointer values).Michael Drake2017-03-231-5/+9
| | | | This makes it easier to track a content by its ID through a log.
* make scrollbar redraw signal errors correctlyVincent Sanders2017-03-011-4/+6
| | | | | allow scrollbar redraw to return error codes and update documentation commenst appropriately.
* fix some doxygen errorsVincent Sanders2017-02-242-7/+7
|
* Merge branch 'vince/plotctx'Vincent Sanders2017-02-126-1034/+1306
|\
| * split border drawing out of html redrawVincent Sanders2017-02-114-847/+939
| |
| * simplify html redraw border plotting error handlingVincent Sanders2017-02-111-99/+103
| |
| * Update all core use of plotters to new APIVincent Sanders2017-02-113-366/+542
| |
* | Make disabled textboxes read-only. Partially fixes 2521.Chris Young2017-02-111-1/+12
|/
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-211-4/+5
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-197-11/+11
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-135-10/+14
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* complete transition to locale independant core operationVincent Sanders2016-09-291-6/+5
| | | | | | | | | | | | The netsurf core no longer uses any locale dependant operations excepting the mall number or cases where such operations are explicitly wanted. the netsurf_init now calls setlocale with the empty string and lets the c library setup as per its specific implementation. any core functionality that specificaly processes ascii text must use the utils/ascii.h header to do so.
* Style: Fix ignoring of STYLE elements with non-screen media.Michael Drake2016-09-244-0/+43
| | | | | | | | | | | | | | | | | | We were handling the STYLE tag getting added in the dom_default_action_DOMSubtreeModified_cb callback, however, the media attribute dadn't been added by that point. We now check it in the dom_default_action_DOMNodeInserted_cb callback, at which time the media attribute is available for checking. Note, we should probably store the media type in the html_stylesheet structure, but for now we just have an `unused` boolean. Also, it may be possible to optimise to avoid parsing non- screen media STYLE element data if we could detect the media earlier.
* cleanup seevral doxygen warningsVincent Sanders2016-09-133-5/+5
|
* make html content line parsing use no locale dependant ascii processingVincent Sanders2016-09-121-7/+7
|
* use ascii processing when determining form charsetVincent Sanders2016-09-121-9/+10
|
* make box construction use correct ascii processingVincent Sanders2016-09-111-57/+66
|
* simplify box_extract_link interface and improve documentationVincent Sanders2016-09-113-30/+33
|
* URL escape: Simplify to avoid unnecessary allocation.Michael Drake2016-07-251-2/+2
| | | | | | | | This removes the toskip parameter, which was only used by the RISC OS front end. The toskip param was used to skip 8 characters which did not need to be escaped from the start of the URL. The RISC OS front end now orders the steps of its URL construction to avoid the need for this.
* move key press enums and operations to their own headerVincent Sanders2016-07-013-6/+6
|
* move the public form APIVincent Sanders2016-06-143-82/+6
|
* Allow include directories to be added by sub makefilesVincent Sanders2016-06-0611-13/+13
|
* Update content to split public and internal APIVincent Sanders2016-06-0612-26/+34
|
* move plotters header into public APIVincent Sanders2016-05-303-3/+3
|
* move desktop window header into public APIVincent Sanders2016-05-309-10/+7
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-304-4/+4
|
* move layout header into public APIVincent Sanders2016-05-305-5/+5
|
* move misc header into public APIVincent Sanders2016-05-308-8/+8
|
* move utf8 header into public APIVincent Sanders2016-05-301-1/+1
|
* move search header into public APIVincent Sanders2016-05-301-1/+1
|
* move bitmap API header to core include directoryVincent Sanders2016-05-262-2/+2
|
* move the CSS content handlerVincent Sanders2016-05-2614-31/+27
|
* move image content handlers to accomodate core build changesVincent Sanders2016-05-232-2/+2
|
* fix plain text render regression introduced in layout table changesVincent Sanders2016-04-281-3/+5
|
* remove all core usage of warn_user APIVincent Sanders2016-04-264-17/+25
|
* update scrollbar_create error handling to return nserrorVincent Sanders2016-04-262-6/+8
|
* split out the layout glyph sizing and splitting APIVincent Sanders2016-04-237-3156/+3183
| | | | | This refactors the core "font" sizing API to be handled through gui function tables similar to every other core/frontend calling API.
* Split utils header into string functions and everything elseVincent Sanders2016-04-212-6/+8
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* implement tsla code review points in render monotonic time changeVincent Sanders2016-04-201-15/+16
|
* use monotonic clock call for html reflow timingVincent Sanders2016-04-202-29/+44
|
* stop content header dragging in so many other headersVincent Sanders2016-04-191-0/+1
|