Bug 1302949 - Add a method to parse a property-value pair into a declaration block; r=Manishearth

The property may be a shorthand property in which case the declaration block
will contain the expanded longhand properties and values.

MozReview-Commit-ID: KxqlYgbIZqL
This commit is contained in:
Brian Birtles 2016-09-15 16:03:41 +09:00 committed by Manish Goregaokar
parent a0e404c79e
commit 56e70aec51
7 changed files with 71 additions and 2 deletions

View file

@ -13,6 +13,7 @@ doctest = false
[dependencies]
app_units = "0.3"
cssparser = {version = "0.7"}
env_logger = "0.3"
euclid = "0.10.1"
lazy_static = "0.2"

View file

@ -3,6 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
extern crate app_units;
extern crate cssparser;
extern crate env_logger;
extern crate euclid;
extern crate geckoservo;