Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make ParsingMode bitflags. | Hiroyuki Ikezoe | 2017-05-14 | 1 | -3/+3 |
| | | | | | assert_parsing_mode_match() is mostly the same as assert_restyle_hints_match(). | ||||
* | Rename LengthParsingMode to ParsingMode and LengthParsingMode::SVG to ↵ | Hiroyuki Ikezoe | 2017-05-14 | 1 | -3/+3 |
| | | | | | | | PasingMode::AllowUnitlessLength. We need another flag that represents allow-negative-number for SMIL, so this enum will also comprise the another parsing mode that allows negative number. | ||||
* | Propagate quirks mode all the way to ParserContext | Anthony Ramine | 2017-04-27 | 1 | -2/+5 |
| | | | | The quirks mode is still not properly propagated in geckolib. | ||||
* | SVG length parsing mode | J. Ryan Stinnett | 2017-04-14 | 1 | -3/+5 |
| | | | | | | | SVG allows non-zero lengths to be accepted and assumes they are in px. This adds this length parsing mode to Servo. MozReview-Commit-ID: Kxd3x64r9Ye | ||||
* | Pull rule_type into ParserContext | J. Ryan Stinnett | 2017-04-12 | 1 | -2/+3 |
| | | | | | | | Absorb `rule_type` into the `ParserContext` so that it's easier to pass down to deeper levels of the parser. MozReview-Commit-ID: DjBNytLxGKX | ||||
* | style: Avoid cloning all over the error reporter. | Emilio Cobos Álvarez | 2017-03-14 | 1 | -2/+2 |
| | |||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Add CSS.supports() | Manish Goregaokar | 2017-01-07 | 1 | -2/+26 |
| | |||||
* | Make WebIDL static methods take a more specific global if possible | Anthony Ramine | 2016-11-30 | 1 | -2/+2 |
| | |||||
* | Pass a &GlobalScope to WebIDL static methods and constructors | Anthony Ramine | 2016-10-06 | 1 | -2/+2 |
| | |||||
* | Move DOMString back to script | Anthony Ramine | 2016-05-24 | 1 | -1/+1 |
| | | | | This entirely removes the 'non-geckolib' feature of the util crate. | ||||
* | Update cssparser to fix CSS.escape test failures | Maciej Skrzypkowski | 2016-05-06 | 1 | -4/+1 |
| | | | | Fixed failing tests #10685 | ||||
* | Replaced DOMString constructor by conversion functions. | Alan Jeffrey | 2015-11-12 | 1 | -3/+3 |
| | | | | | | Replaced DOMString(...) by DOMString::from(...). Replaced ....0 by String::from(...). Removed any uses of .to_owner() in DOMString::from("..."). | ||||
* | Make DOMString a newtype around String, rather than a typedef. | Ms2ger | 2015-11-04 | 1 | -1/+1 |
| | | | | | | | | | | This should make it somewhat easier to experiment with alternative representations in the future. To reduce churn, this commit leaves the String field public, though. Also, this will allow us to use the default String type to represent the IDL USVString type, which explicitly forbids unpaired surrogates, ans as such is a better match to the Rust String type. | ||||
* | more refactoring | rohan.prinja | 2015-10-30 | 1 | -1/+1 |
| | |||||
* | Fix reported test-tidy errors for unmerged import blocks | Brandon Fairchild | 2015-09-19 | 1 | -2/+1 |
| | | | | This merges import blocks that were reported by tidy as unmerged. | ||||
* | make dom_struct derive HeapSizeOf, | João Oliveira | 2015-08-27 | 1 | -1/+0 |
| | | | | closes #7357 | ||||
* | Measure heap memory usage for more types. Fixes #6951 | Bogdan Cuza | 2015-08-13 | 1 | -0/+1 |
| | |||||
* | Implement the CSS interface | Anthony Ramine | 2015-04-25 | 1 | -0/+27 |