summaryrefslogtreecommitdiff
path: root/render/html.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix leak of html encoding.Michael Drake2013-10-231-0/+7
|
* use correct acessors for unsigned typeVincent Sanders2013-05-281-2/+2
|
* move options includeVincent Sanders2013-05-281-1/+1
|
* Handle title on dom event. Remove head walker from begin_conversion.Michael Drake2013-05-231-81/+27
|
* Move base and link element handling to event callback.Michael Drake2013-05-231-182/+182
|
* Move meta refresh handling to dom event handler.Michael Drake2013-05-221-293/+203
|
* Tiny simplification.Michael Drake2013-05-201-8/+5
|
* Remove search context from browser window, simplify search interface for ↵Michael Drake2013-05-071-30/+4
| | | | | | | | | | | | | | | | | | | | | | front ends. Added content interface for search. Removed bw->cur_search search context. Desktop layer now does nothing except pass search requests from front end onto the bw's current_content via the content interface. Search API reduced to a pair of functions at each level: {desktop|content|html|textplain}_search and {desktop|content|html|textplain}_search_clear Updated front ends to use simplified search API. Only tested GTK and RO builds. These confine the search stuff to render/. However search still uses struct selection. The handling for which is still spread over desktop/ and render/. Also the render/search code itself still fiddles inside html and textplain privates.
* Stop looking on first modified sheet found.Michael Drake2013-03-181-1/+3
|
* Fix bug where html conversion began before STYLE element fetch had been ↵Michael Drake2013-03-181-2/+19
| | | | launched.
* Unref the node in the callbacksDaniel Silverstone2013-03-051-0/+2
|
* split out object handling from render/html.cVincent Sanders2013-02-251-566/+11
|
* fix quirk stylesheet loadingVincent Sanders2013-02-251-9/+26
|
* Fix memory leakJohn-Mark Bell2013-02-241-0/+4
|
* refactor stylesheet handling to separate object from within html renderingVincent Sanders2013-02-241-665/+17
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-02-221-481/+566
|\ | | | | | | | | Conflicts of doom: render/html.c
| * correct reference counting for moved css callsVincent Sanders2013-02-201-16/+6
| |
| * deal with inline styles on updates instead of insertVincent Sanders2013-02-201-79/+158
| |
| * change stylesheet fetching to be generated from the default dom eventsVincent Sanders2013-02-191-448/+485
| |
| * refactor stylesheet fetching code to not have redundant sheet countVincent Sanders2013-02-191-68/+47
| |
* | A load of refactoring of how content selection and input work.Michael Drake2013-02-221-2/+110
|/ | | | | | | | | | | | | Keypresses now go via content interface. Contents don't shove the selection object into browser windows any more. Contents report selection existence by sending message. HTML content keeps track of where selections in it exist. Contents report whether they have input focus via caret setting msg. Caret can be hidden (can still input/paste) or removed. Consolidate textarea selection handling. Make textarea report its selection status changes to client. Various textarea fixes. Changed how we decide when to clear selections, and give focus.
* Support dropping text file on textarea widget.Michael Drake2013-02-081-7/+7
|
* Add scrollwheel support to textareas.Michael Drake2013-02-081-0/+9
|
* Fix comment.Michael Drake2013-02-081-2/+2
|
* HTML drags now go via content msg.Michael Drake2013-02-081-2/+25
|
* First pass at getting html forms to use textarea widget.Michael Drake2013-02-061-0/+1
| | | | | (Input element types text & password, and textarea element.) Can edit and submit forms, but there are loads of issues.
* Remove content_msg for PASTE, since it doesn't need a gui_window to get the ↵Michael Drake2013-01-081-1/+0
| | | | buffer from the front end now.
* ensure default action fetcher is set to NULLVincent Sanders2012-12-061-0/+2
|
* change to parameterised parser binding creationVincent Sanders2012-12-061-96/+42
|
* issue click events at domVincent Sanders2012-12-031-1/+1
|
* add missing includeVincent Sanders2012-11-281-0/+1
|
* initial event fireing implementationVincent Sanders2012-11-281-0/+6
|
* html renderer error path fixups for meta refreshVincent Sanders2012-11-261-21/+23
|
* Improve html renderer error reportingVincent Sanders2012-11-261-200/+217
|
* Check if box with imagemap at point has area at point.Michael Drake2012-11-221-3/+6
|
* Use can_reformat instead of HTML special case. Allow reflow of parent for ↵Michael Drake2012-11-111-8/+9
| | | | any object that gets a reformat.
* Reformat objects that reach the READY state.Michael Drake2012-11-111-0/+7
|
* remove redundant domutils and put functionality in existing utils/libdomVincent Sanders2012-11-101-2/+1
|
* add document.body, head and documentElement gettersVincent Sanders2012-11-071-40/+2
| | | | add a dom utility file and use it
* More useful error type for libdom hubbub binding errors.Michael Drake2012-11-071-0/+1
|
* Improve error handling in html contentVincent Sanders2012-10-171-54/+104
|
* Move dom walker to utils/libdom.{c|h}. Add a few HTML elements to core strings.Michael Drake2012-10-121-106/+2
|
* Fix document leak in encoding change handlerDaniel Silverstone2012-10-111-0/+3
|
* Use nsurl_join instead of url_join. Forms still need to be moved over to nsurl.Michael Drake2012-10-111-9/+17
|
* Need to talloc_free things that are created with talloc.Michael Drake2012-10-031-7/+7
|
* reduce talloc usage to box tree layout onlyVincent Sanders2012-10-031-36/+62
|
* quick and dirty fix to deal with replaced object trying to get a script contextVincent Sanders2012-10-011-0/+4
|
* Fix to define variable at start of block, for GCC 2.95.2.Michael Drake2012-09-291-8/+1
|
* Improve object status message handling.Michael Drake2012-08-221-1/+5
|
* Confine box_at_point to the document it's given. Callers are now ↵Michael Drake2012-08-211-13/+18
| | | | responsible for calling whatever functionality for object boxes. Remove last bw dereference from render directory. Remove a couple of unused functions.