diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-03-16 23:51:26 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-03-22 19:11:30 -0700 |
commit | 63e8367eeee9769756c18af5a235fc7ff7c5366b (patch) | |
tree | 49587f4e2d07a2f1cafd56452d414d3311532c9b /components/style/gecko/mod.rs | |
parent | 16e04046b5ed2c780b2187c6944cc31a54d2523b (diff) | |
download | servo-63e8367eeee9769756c18af5a235fc7ff7c5366b.tar.gz servo-63e8367eeee9769756c18af5a235fc7ff7c5366b.zip |
Don't resolve URLs at parse time for Stylo.
It's a bit unfortunate the use separate implementations of SpecifiedUrl for Servo
and Gecko, but they're different enough at this point that I don't think it really
makes sense to try to share everything. Splitting them out has some nice
simplifications as well.
I recognize that there's still some potential correctness issues for Servo using
the resolved URI in various places where the original URI may be the right thing,
but I've got too much on my plate to look into that for now.
MozReview-Commit-ID: BeDu93TQ4Ow
Diffstat (limited to 'components/style/gecko/mod.rs')
-rw-r--r-- | components/style/gecko/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/gecko/mod.rs b/components/style/gecko/mod.rs index 48d50c5fa80..1e950fe2ad1 100644 --- a/components/style/gecko/mod.rs +++ b/components/style/gecko/mod.rs @@ -17,5 +17,6 @@ pub mod selector_parser; pub mod snapshot; pub mod snapshot_helpers; pub mod traversal; +pub mod url; pub mod values; pub mod wrapper; |