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 upRemove the width() function in border_for_style() #2288
Comments
|
In #2174 I said just removing it should be enough, since |
|
@pcwalton said in that review:
This reminds me of something where WeasyPrint makes the initial value of some properties (including |
Previously we processed them in forward order, latter dcelarations for the same property overriding any earlier one, making the work of converting the earlier ones to a computed value redundant. Maintaining a bit field of "seen" properties will also help fixing servo#2288.
Previously we processed them in forward order, latter dcelarations for the same property overriding any earlier one, making the work of converting the earlier ones to a computed value redundant. Maintaining a bit field of "seen" properties will also help fixing servo#2288.
It shouldn't be necessary but is currently necessary to work around an issue in selector matching.