-
Notifications
You must be signed in to change notification settings - Fork 717
[css-fonts] Missing serialisation for 0 ranged descriptors inside @font-face #7925
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
Comments
Since there is a general rule to serialize things in a simpler form in spec:
I'm proposing to simplify 0 ranged descriptors inside |
That makes sense to me. |
@tursunova sorry for the delay; I added Agenda+ a while ago but we have a backlog, more items to discuss than we can cover in a week. |
@svgeesus no worries, thank you for adding Agenda+ |
@svgeesus I think you can just accept this under Editor Discretion, since it's just a corollary of the serialization principles. |
Uh oh!
There was an error while loading. Please reload this page.
In the spec there is no specification on whether 0 ranged
font-stretch
,font-style
andfont-weight
descriptors inside@font-face
rule should be simplified or not. E.g., iffont-weight: 200 200;
is specified inside@font-face
then it's not clear on whetherrule.style.getPropertyValue("font-weight")
should return200
or200 200
. Chrome and Safari are currently returning200 200
while Firefox is returning just200
.The issue was also discussed in the conversation in WPT PR #36489
The text was updated successfully, but these errors were encountered: