Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upPartialEq impl of SpecifiedUrl value is wrong for stylo #15950
Closed
Labels
Milestone
Comments
|
This seem to have been fixed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Serialization of shorthand
markerdepends on equality of url, and it fails when the url are set in different CSSOM call.Specifically, the following code shows the problem:
because it relies on the equality of urls:
servo/components/style/properties/shorthand/inherited_svg.mako.rs
Line 25 in de42121
but the equality of urls depends on equality of
UrlExtraDatawhich contains different pointers for each CSSOM call.This probably should be fixed as part of the next change of how URL is implemented for stylo. File this issue just for a record.