aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/layout/text.rs
Commit message (Expand)AuthorAgeFilesLines
* Split layout code into a separate crate.Josh Matthews2014-06-281-303/+0
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-1/+1
* Upgrade Rust.Jack Moffitt2014-06-051-6/+6
* layout: Reference count flows, and forbid unsafe code in many places.Patrick Walton2014-06-031-0/+2
* Remove the need to destructure InlineFragmentsBrendan Zabarauskas2014-06-021-16/+6
* Rename `box_.rs` to `fragment.rs`Brendan Zabarauskas2014-05-281-1/+1
* Rename functions, fields and adjust comments to use `fragment` instead of `box`Brendan Zabarauskas2014-05-281-66/+66
* Convert usages of `Box` in type identifiers to `Fragment`Brendan Zabarauskas2014-05-281-16/+16
* Make ComputedStyle fields private and add getters.Simon Sapin2014-05-231-6/+6
* Update Rust.Ms2ger2014-05-221-5/+6
* Add character index typeBrendan Zabarauskas2014-05-121-26/+27
* Add RangeIndex trait and iteratorBrendan Zabarauskas2014-05-121-1/+1
* Require Range<T> to have a signed integer TBrendan Zabarauskas2014-05-071-20/+20
* Make range genericBrendan Zabarauskas2014-05-071-2/+2
* Use fmt::Show for outputting debug informationBrendan Zabarauskas2014-05-061-2/+1
* Replace most of the SmallVec0 usages with std::vec::VecBrendan Zabarauskas2014-05-051-3/+2
* Convert Vec::new() to vec!()Matt Murphy2014-05-041-4/+4
* ~[] to Vec in table, table_colgroup, and textMatt Murphy2014-05-041-10/+9
* ~[] to Vec in main/layout/box_.rs, gfx/text/util.rs, main/layout/text.rsMatt Murphy2014-05-041-3/+4
* ~[] to Vec in FontStyle and FontGroupMatt Murphy2014-05-041-2/+2
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-1/+1
* Stop passing owned strings to fail!().Ms2ger2014-05-031-1/+1
* layout: Rewrite display list building to be parallel and to handlePatrick Walton2014-05-021-1/+54
* layout: Re-enable parallel layout by removing all `RefCell` instancesPatrick Walton2014-05-021-64/+43
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-2/+2
* Upgrade rust.Ms2ger2014-04-041-8/+5
* Rust upgradesLars Bergstrom2014-03-181-1/+1
* add case of merge inline info & modify ref testpatrick kim2014-02-071-19/+15
* add comment & add ref testpatrick kim2014-01-271-0/+2
* implement inline borderpatrick kim2014-01-271-3/+19
* layout: Port parallel layout over to a generic "work queue"Patrick Walton2014-01-241-7/+10
* Use logical clump offset into newline position list. Fixes wikipedia vector i...Josh Matthews2014-01-241-2/+3
* Implement white-space property(pre)Deokjin Kim2014-01-231-16/+39
* Upgrade to latest Rust.Jack Moffitt2014-01-121-11/+11
* layout: Move the `LayoutNode` wrapper from script into layout.Patrick Walton2013-12-171-2/+3
* layout: Make `NodeRange` use `OpaqueNode` for memory safety.Patrick Walton2013-12-171-1/+1
* layout: Don't delete non-text boxes from the list of input boxes whenPatrick Walton2013-12-111-9/+4
* remove @ in LayoutTask.FontContextpatrick kim2013-12-111-2/+2
* layout: Change `~Box` to `Box`.Patrick Walton2013-12-101-7/+7
* removing @ from flowtree. (but cloning boxes when creating a display list)Ryan Choi2013-12-101-16/+18
* Revert "auto merge of #1356 : ksh8281/servo/remove_@_in_LayoutTask.FontContex...Patrick Walton2013-12-091-10/+8
* fix some codepatrick kim2013-12-101-1/+2
* remove @ in LayoutTask.FontContextpatrick kim2013-12-101-2/+2
* remove @ from ScannedTextBox.runpatrick kim2013-12-101-7/+8
* fix indent & some codepatrick kim2013-12-071-5/+4
* remove @ fontcontextpatrick kim2013-12-071-2/+7
* layout: Change `RenderBox` to an enum and shorten its name inPatrick Walton2013-12-051-37/+47
* s/FlowContext/FlowBruno de Oliveira Abinader2013-12-021-3/+3
* fmt! -> format!Keegan McAllister2013-10-311-10/+10
* Optimize reflow by changing enums to traits and inlining morePatrick Walton2013-10-281-70/+31