aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/table.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement simple layout for text, button, radio, and checkbox inputs. ↵Josh Matthews2014-10-011-2/+3
| | | | Implement simple interaction for checkboxes and radio buttons.
* Fix trailing whitespace tidy errorsCameron Zwarich2014-09-251-1/+1
|
* layout: Float table wrappers directly instead of generating a blockPatrick Walton2014-09-251-0/+4
| | | | | | | | | | wrapper around them. Fixes Wikipedia tables leaking out. Along the way, I refactored tables' width calculation significantly. This was necessary in order to properly handle floated tables, as some of the logic had to be ported over from block flows.
* Eliminate warningsKeegan McAllister2014-09-201-4/+4
|
* Merge pull request #3420 from glennw/table-debugPatrick Walton2014-09-191-0/+11
|\ | | | | Adds support for table layout trace and updates viewer for tables.
| * Adds support for table layout trace and updates viewer for tables.Glenn Watson2014-09-191-0/+11
| |
* | Remove min/max functions from util::geometry. Use std::cmp instead.Simon Sapin2014-09-191-2/+2
| |
* | Fix dimensionality of AuSimon Sapin2014-09-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we implemented: Au * Au -> Au Au / Au -> Au Au % Au -> Au ... which are inconsistent. It should be: Au * Au -> SquaredAu Au / Au -> i32 Au % Au -> i32 or: Au * i32 -> Au Au / i32 -> Au Au % i32 -> Au I picked the latter. Also, the multiplicative identity does not make sense when multiplication take two different types.
* | Fix padding on tables. This fixes the TOC on wikipedia pages.Glenn Watson2014-09-191-0/+4
|/ | | | Ref: #2554
* Implement generated_containing_block_rect for TableFlow. Fixes #3337.Glenn Watson2014-09-151-0/+5
|
* Cargoify servoJack Moffitt2014-09-081-0/+324