aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/text.rs
Commit message (Expand)AuthorAgeFilesLines
...
* Alignment is wrong.Michael Howell2016-06-181-7/+7
* Remove empty lines following braces.Josh Matthews2016-05-271-1/+0
* Report use statements that use {} with only one entryCullen Rhodes2016-05-271-1/+1
* Always include the last-resort fontMatt Brubeck2016-05-241-9/+4
* Removed unused importsPer Lundberg2016-05-151-1/+1
* Fix some warningsSimon Sapin2016-04-291-3/+3
* Use byte indices instead of char indices for text runsMatt Brubeck2016-04-281-52/+29
* Don't strip out all empty fragmentsMatt Brubeck2016-04-161-8/+7
* Fix up inline context flags during text fragment scanningMatt Brubeck2016-04-161-6/+34
* Renamed style structs.Per Lundberg2016-04-081-3/+3
* Draw insertion point even for empty input fieldsMatt Brubeck2016-04-071-4/+8
* Fix insertion point layout for text runs with multiple fragmentsMatt Brubeck2016-04-071-14/+50
* Slight refactoring of RunMapping flush methodMatt Brubeck2016-04-071-16/+12
* Move CSS line-height property from InheritedBox to InheritedTextMauricio Collares2016-04-051-1/+1
* Implement ::selection pseudo-elementEmilio Cobos Álvarez2016-03-301-0/+1
* Auto merge of #10277 - perlun:rename-tcomputedvalues-to-computedvalues, r=Sim...bors-servo2016-03-301-1/+1
|\
| * Renamed TComputedValues to ComputedValuesPer Lundberg2016-03-291-1/+1
* | Auto merge of #10255 - mbrubeck:box-unscanned, r=pcwaltonbors-servo2016-03-301-2/+2
|\ \ | |/ |/|
| * Put UnscannedTextFragmentInfo in a BoxMatt Brubeck2016-03-291-2/+2
* | ComputedValues is now ServoComputedValuesPer Lundberg2016-03-271-2/+2
|/
* Auto merge of #10176 - mbrubeck:selection-range, r=pcwaltonbors-servo2016-03-261-21/+54
|\
| * Convert ScannedTextFragment fields into bitflagsMatt Brubeck2016-03-241-3/+11
| * Highlight selected text in input fieldsMatt Brubeck2016-03-241-19/+44
* | Parameterize the rest of the style system on TNode.Bobby Holley2016-03-241-1/+1
|/
* Move util::range into its own crateJonathan Schuster2016-02-251-1/+1
* Move util::logical_geometry to styleAnthony Ramine2016-02-181-1/+1
* Prefer `is_empty` over `len` when option is available.Corey Farwell2016-01-291-1/+1
* layout/text.rs: Add assertion for empty fontgroupOlaf Buddenhagen2016-01-141-0/+2
* Fix a bunch of clippy lintsJohannes Linke2016-01-021-8/+5
* Extend whitespace::T with additional helper methodsKeith Yeung2015-11-201-2/+2
* display input caret for textarea. fixes #7758Florian Merz2015-10-211-1/+11
* Add support for `pre-wrap` and `pre-line` values for `white-space`.Eli Friedman2015-10-201-15/+13
* Split Au type into separate crate, with minimal dependencies.Glenn Watson2015-10-011-1/+1
* Fix text-transform:capitalize across text runsMatt Brubeck2015-09-291-5/+8
* Break text runs by unicode scriptMatt Brubeck2015-09-291-1/+32
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-2/+1
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-2/+1
* layout: Query and maintain the position of the insertion pointPatrick Walton2015-09-171-7/+38
* Remove 'get_*' on getters as per RFC 0344 on various componentsMathieu Rheaume2015-09-121-2/+2
* layout: Fix several bugs relating to inline borders, padding, andPatrick Walton2015-09-031-5/+9
* Upgrade to rustc 1.4.0-dev (cb9323ec0 2015-09-01)Simon Sapin2015-09-021-1/+1
* Correctly handle length-changing mappings in text-transformAnthony Ramine2015-08-191-6/+7
* layout: Rewrite whitespace stripping.Patrick Walton2015-08-111-6/+5
* Rollup merge of #7015 - mbrubeck:arc-box, r=Ms2gerMatt Brubeck2015-08-061-1/+1
|\
| * Replace Arc<Box<TextRun>> with Arc<TextRun>Matt Brubeck2015-08-051-1/+1
* | Use Box<str> instead of Box<String> for UnscannedTextFragmentInfoMatt Brubeck2015-08-051-2/+2
|/
* Implement getComputedStyleDavid Zbarsky2015-07-291-2/+2
* Basic support for bidirectional textMatt Brubeck2015-07-231-36/+94
* Slice TextRuns by byte range instead of char rangeMatt Brubeck2015-06-231-7/+13
* layout: Implement per-glyph font fallback.Patrick Walton2015-05-221-108/+247