summaryrefslogtreecommitdiff
path: root/render/layout.c
Commit message (Expand)AuthorAgeFilesLines
* reduce talloc usage to box tree layout onlyVincent Sanders2012-10-031-2/+2
* Don't convert spaces to non-breaking spaces inside white-space:pre. Instead,...Michael Drake2012-10-031-1/+3
* More white-space:nowrap.Michael Drake2012-10-031-4/+4
* Support white-space:nowrap.Michael Drake2012-10-031-2/+5
* Include dom/dom.h where it might be neededDaniel Silverstone2012-03-241-0/+1
* Delete some trailing whitespace.Michael Drake2012-03-231-2/+2
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-2/+2
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-041-1/+1
* Only make space for vertical box scrollbar if box has height set.Michael Drake2011-11-241-0/+6
* Fix bug #3433954: make containing_block available to layout_table so it can r...John Mark Bell2011-11-061-0/+4
* Fix bug #3433840: <img style="display: table" src="..."> will crash if the im...John Mark Bell2011-11-051-2/+1
* Add layout_get_object_dimensions param documentation missing from last commit.Michael Drake2011-09-231-0/+2
* Handle min/max-width on replaced elements.Michael Drake2011-09-231-11/+41
* Use fixed insted of floating point to get percentage of available_width, for ...Michael Drake2011-09-231-2/+2
* Move css_fixed and css_unit variables to where they're used.Michael Drake2011-09-231-2/+2
* Simplify layout_get_object_dimensions.Michael Drake2011-09-231-22/+15
* Use layout_find_dimensions to get inline object width/height.Michael Drake2011-09-231-24/+5
* Remove gui_multitaskJohn Mark Bell2011-09-211-40/+0
* Replaced elements' children are not laid out, so don't look at their descenda...Michael Drake2011-08-231-0/+4
* Prevent iframes with display:inline and percentage width from getting a width...Michael Drake2011-06-281-1/+6
* If iframes are reformatted due to containing document reflow, don't need to r...Michael Drake2011-06-241-21/+15
* Reformat floated iframe browser windows only after the iframe box has been li...Michael Drake2011-06-141-6/+10
* First pass at core iframes. Currently lacking scrollbars.Michael Drake2011-06-141-12/+61
* Use height type enum.Michael Drake2011-05-161-2/+3
* Elements replaced with HTML don't affect parent descendants.Michael Drake2011-05-101-1/+4
* s/scroll/scrollbar/ and improve scrollbar widget comments.Michael Drake2011-05-091-1/+1
* Merge branches/jmb/content-factory to trunkJohn Mark Bell2011-05-061-23/+22
* Reduce number of page reflows and viewportMichael Drake2011-04-271-14/+27
* Optimise first pass of layout. Reduces number of nsfont_width calls by up to...Michael Drake2011-04-261-11/+36
* Change how blocks are positioned vertically (esp. margin handling).Michael Drake2011-04-221-60/+217
* Fix build with NDEBUG definedJohn Mark Bell2011-04-031-2/+89
* Allow box margins to collapse through zero-height boxes.Michael Drake2011-03-121-10/+51
* Saturated maths in css fixed point Vincent Sanders2011-03-121-4/+4
* Update left/right margins comment.Michael Drake2011-03-121-2/+2
* Esimated width is fine for last box.Michael Drake2011-03-051-2/+4
* Ensure box has appropriate space before cloning.Michael Drake2011-03-051-6/+14
* Make sure the last clone box for a wrapped text is properly measuered.Michael Drake2011-03-051-0/+15
* Move clone to box flags.Michael Drake2011-03-021-1/+1
* Make box flags and move new line indicator to it.Michael Drake2011-03-021-2/+2
* When wrapping text, don't duplicate strings. Special case for text inside te...Michael Drake2011-03-011-5/+14
* More useful assert and remove box_dump call.Michael Drake2011-03-011-8/+2
* Cache space widths.Michael Drake2011-03-011-25/+30
* Split splitting out into layout_text_box_split().Michael Drake2011-03-011-71/+63
* Optimise wrapped text layout.Michael Drake2011-02-281-4/+30
* Apply margin before clear.Michael Drake2011-02-241-2/+2
* Handle text-indent in layout_minmax_line(). (Fixes #3187505; scattering of s...Michael Drake2011-02-241-9/+22
* When box has no style, handle descendant calc as for overflow: visible.Michael Drake2011-02-231-2/+3
* Child bbox is relative to current box.Michael Drake2011-02-221-0/+5
* Child's descendant bbox only affects current box's bbox if the child has over...Michael Drake2011-02-221-5/+14
* Add function to get a box's border edge bbox, and use it to find initial desc...Michael Drake2011-02-221-6/+26