Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 16 | -4996/+0 |
| | |||||
* | Revert "Move PropertyBitField to a syntax extension." | Glenn Watson | 2014-09-02 | 1 | -21/+64 |
| | | | | This reverts commit d6002a0a50f4c9fab7bcaf592b296123d33ac212. | ||||
* | Make text decorations be independent display items. | Simon Sapin | 2014-08-29 | 1 | -0/+1 |
| | | | | The goal it to avoid having too much layout logic (which gets more complex in vertical text) in gfx code. | ||||
* | Fix <br> support | Matt Brubeck | 2014-08-27 | 1 | -1/+1 |
| | |||||
* | Move PropertyBitField to a syntax extension. | Simon Sapin | 2014-08-23 | 1 | -64/+21 |
| | | | | This is a first step towards moving away the Mako template in the style crate. | ||||
* | Take an iterator when parsing selectors. | Simon Sapin | 2014-08-16 | 3 | -38/+35 |
| | |||||
* | Make more things private to the style crate. | Simon Sapin | 2014-08-16 | 5 | -15/+70 |
| | |||||
* | Refactor and fix src parsing in @font-face | Simon Sapin | 2014-08-16 | 4 | -165/+122 |
| | |||||
* | Dissallow !important in @font-face | Simon Sapin | 2014-08-16 | 1 | -2/+5 |
| | |||||
* | Fix #2802: fix parsing of font-family in @font-face | Simon Sapin | 2014-08-16 | 3 | -54/+89 |
| | |||||
* | Fix case sensitivity of local name selectors. | Simon Sapin | 2014-08-16 | 4 | -78/+89 |
| | |||||
* | Move UA stylesheet to src/components/style | Simon Sapin | 2014-08-16 | 2 | -2/+129 |
| | |||||
* | Remove special treatment of UA stylesheet for parse errors. | Simon Sapin | 2014-08-16 | 2 | -18/+2 |
| | | | | CSS parse errors are now off by default anyway. | ||||
* | Cloning `DeclarationBlock` is cheap, the declarations are in an `Arc`. | Simon Sapin | 2014-08-16 | 1 | -1/+0 |
| | |||||
* | Have quicksort take a compare function rather than requires Ord and Eq. | Simon Sapin | 2014-08-16 | 1 | -30/+7 |
| | |||||
* | Rename MatchedProperty to DeclarationBlock | Simon Sapin | 2014-08-16 | 3 | -32/+32 |
| | |||||
* | Fix parsing of `text-decoration: none` | Simon Sapin | 2014-08-16 | 1 | -1/+5 |
| | | | | | It would previously accept and ignore garbage in the declaration value after the `none` keyword. | ||||
* | Use Result/Err(()) in Selector parsing. | Simon Sapin | 2014-08-16 | 2 | -166/+138 |
| | | | | | | | | … get rid of some custom `enum` types for parsing return values. `Option<Option<T>>` was ridiculous, but `Result<Option<T>, ()>` make perfect sense. Also, we can now take advantage of the `try!()` macro. | ||||
* | Use Result/Err(()) instead of Option/None to indicate a CSS parse error. | Simon Sapin | 2014-08-16 | 5 | -207/+218 |
| | |||||
* | Merge commit 'refs/pull/3029/head' of https://github.com/servo/servo | Simon Sapin | 2014-08-11 | 2 | -71/+46 |
|\ | | | | | | | | | Conflicts: src/components/style/selector_matching.rs | ||||
| * | Port selector matching to use atoms. | Glenn Watson | 2014-08-06 | 2 | -70/+45 |
| | | | | | | | | | | | | | | | | | | | | Removed the Lowercase new type. This does mean that this code path is slightly slower for now. This is because find_equiv() doesn't work with atoms in hash tables, due to the hash value being different than that of a string. However it also means the removal of some unsafe code, and a better long term solution will be to precache the lower case versions as atoms. | ||||
* | | Upgrade Rust. | Jack Moffitt | 2014-08-08 | 2 | -15/+15 |
| | | |||||
* | | Merge pull request #2791 from glennw/web-fonts | glennw | 2014-08-06 | 3 | -2/+215 |
|\ \ | |/ |/| | Add basic support for web fonts. Synchronous loading only | ||||
| * | Fix parsing invalid url, clean up font template matching. | Glenn Watson | 2014-07-28 | 1 | -2/+2 |
| | | |||||
| * | Update font face to new url parser. | Glenn Watson | 2014-07-24 | 1 | -3/+4 |
| | | |||||
| * | Don't rely on font hint for format detection. Handle parsing comma | Glenn Watson | 2014-07-24 | 1 | -64/+72 |
| | | | | | | | | | | separated format hints. Fix oversight in mac code dealing with creating web fonts from memory. | ||||
| * | Address review comments. | Glenn Watson | 2014-07-24 | 2 | -33/+115 |
| | | |||||
| * | Fix missing license header in new file. | Glenn Watson | 2014-07-24 | 1 | -0/+4 |
| | | |||||
| * | Add basic support for web fonts. Synchronous loading only | Glenn Watson | 2014-07-24 | 3 | -2/+120 |
| | | | | | | | | | | | | for now, and only deals with TTF format fonts. For an example, try loading http://icons.marekventur.de | ||||
* | | Implement support for :enabled CSS selector | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -1/+10 |
| | | |||||
* | | Implement support for :disabled CSS selector | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -1/+10 |
| | | |||||
* | | Upgrade Rust. | Jack Moffitt | 2014-08-02 | 2 | -12/+10 |
| | | |||||
* | | Use atom to match id selector. | Tetsuharu OHZEKI | 2014-07-30 | 3 | -9/+11 |
|/ | |||||
* | Port element traits to use atoms instead of strings. | Glenn Watson | 2014-07-22 | 2 | -3/+4 |
| | |||||
* | Used rust-url directly instead of servo_util::url | Simon Sapin | 2014-07-21 | 2 | -2/+8 |
| | | | | The latter now only calls the former. | ||||
* | Start dogfooding rust-url. Fix #1673. | Simon Sapin | 2014-07-21 | 1 | -1/+1 |
| | |||||
* | Convert layout code to use logical directions. | Simon Sapin | 2014-07-18 | 2 | -38/+132 |
| | |||||
* | Move CSS Writing Modes properties behind a new command-line flag. | Simon Sapin | 2014-07-18 | 1 | -14/+28 |
| | |||||
* | Add logical geometry primitives, for CSS Writing Modes. | Simon Sapin | 2014-07-09 | 1 | -0/+50 |
| | |||||
* | Fix or selectively silence warnings in src/components. | Simon Sapin | 2014-07-08 | 2 | -0/+8 |
| | |||||
* | Warning police. | Glenn Watson | 2014-07-07 | 1 | -3/+3 |
| | |||||
* | Remove some deprecated into_owned calls. | Ms2ger | 2014-07-04 | 1 | -9/+9 |
| | |||||
* | Remove some unused fields. | Ms2ger | 2014-07-04 | 1 | -4/+1 |
| | |||||
* | Add a FIXME comment for #2742 | Matt Brubeck | 2014-07-01 | 1 | -0/+1 |
| | |||||
* | Add parsing of `overflow: scroll` and `auto`. | Matt Brubeck | 2014-07-01 | 1 | -1/+1 |
| | | | | | Elements with overflow scroll/auto are not yet scrollable, but they will be clipped correctly (like `overflow: hidden`). | ||||
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 7 | -33/+45 |
| | |||||
* | Remove compiler warnings from generated mako templates. | Glenn Watson | 2014-06-16 | 1 | -1/+1 |
| | |||||
* | Fix some deprecated warnings for to_owned() | Manish Goregaokar | 2014-06-08 | 2 | -20/+20 |
| | |||||
* | Implement querySelector for Document | Bruno de Oliveira Abinader | 2014-06-05 | 2 | -2/+3 |
| | |||||
* | Upgrade Rust. | Jack Moffitt | 2014-06-05 | 11 | -72/+75 |
| |