-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Treat url(<string>) as a normal functions, per spec change. #90
Conversation
Only unquoted URLs are special tokens now. Use `Parser::expect_url`. This is a [breaking-change]. The version number was incremented accordingly. This change will help with servo/servo#7767
9201f47
to
3e2e0b5
Compare
Reviewed 5 of 5 files at r1. Comments from the review on Reviewable.io |
@bors-servo r+ |
📌 Commit 3e2e0b5 has been approved by |
Treat url(<string>) as a normal functions, per spec change. Only unquoted URLs are special tokens now. Use `Parser::expect_url`. This is a [breaking-change]. The version number was incremented accordingly. This change will help with servo/servo#7767 This triggers rust-lang/rust#28934 and fails to build in the current Rust nightly, but works fine in the Rust version that Servo currently use. Hopefully that rustc bug will be fixed before we need to upgrade Rust in Servo. r? @mbrubeck <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/rust-cssparser/90) <!-- Reviewable:end -->
💔 Test failed - travis |
We'll need to disable the nightly channel in Travis temporarily, or pin it to a specific nightly. |
Let’s wait and see if I want to land the corresponding Servo change before the rustc bug is fixed. |
@bors-servo r=mbrubeck |
The Rust bug is fixed in nightly, but beta shipped with it: rust-lang/rust#29188 (comment) |
@bors-servo retry |
@bors-servo: r=mbrubeck |
1 similar comment
@bors-servo: r=mbrubeck |
📌 Commit fa477fd has been approved by |
Treat url(<string>) as a normal functions, per spec change. Only unquoted URLs are special tokens now. Use `Parser::expect_url`. This is a [breaking-change]. The version number was incremented accordingly. This change will help with servo/servo#7767 This triggers rust-lang/rust#28934 and fails to build in the current Rust nightly, but works fine in the Rust version that Servo currently use. Hopefully that rustc bug will be fixed before we need to upgrade Rust in Servo. r? @mbrubeck <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/rust-cssparser/90) <!-- Reviewable:end -->
💔 Test failed - travis |
Failed on the beta compiler as expected. |
@bors-servo retry rust-lang/rust#29188 has been backported to 1.5.0-beta.3: rust-lang/rust#29592 |
Treat url(<string>) as a normal functions, per spec change. Only unquoted URLs are special tokens now. Use `Parser::expect_url`. This is a [breaking-change]. The version number was incremented accordingly. This change will help with servo/servo#7767 This triggers rust-lang/rust#28934 and fails to build in the current Rust nightly, but works fine in the Rust version that Servo currently use. Hopefully that rustc bug will be fixed before we need to upgrade Rust in Servo. r? @mbrubeck <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/rust-cssparser/90) <!-- Reviewable:end -->
☀️ Test successful - travis |
Only unquoted URLs are special tokens now. Use
Parser::expect_url
.This is a [breaking-change]. The version number was incremented accordingly.
This change will help with servo/servo#7767
This triggers rust-lang/rust#28934 and fails to build in the current Rust nightly, but works fine in the Rust version that Servo currently use. Hopefully that rustc bug will be fixed before we need to upgrade Rust in Servo.
r? @mbrubeck