Skip to content
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

feat: 28841 font synthesis position #691

Merged
merged 7 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/node_modules/
.DS_Store
.DS_Store
25 changes: 23 additions & 2 deletions css/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -5070,15 +5070,15 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-style"
},
"font-synthesis": {
"syntax": "none | [ weight || style || small-caps ]",
"syntax": "none | [ weight || style || small-caps || position]",
"media": "visual",
"inherited": true,
"animationType": "discrete",
"percentages": "no",
"groups": [
"CSS Fonts"
],
"initial": "weight style small-caps",
"initial": "weight style small-caps position ",
"appliesto": "allElements",
"computed": "asSpecified",
"order": "orderOfAppearance",
Expand All @@ -5090,6 +5090,27 @@
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis"
},
"font-synthesis-position": {
"syntax": "auto | none",
"media": "visual",
"inherited": true,
"animationType": "discrete",
"percentages": "no",
"groups": [
"CSS Fonts"
],
"initial": "none",
"appliesto": "allElements",
dletorey marked this conversation as resolved.
Show resolved Hide resolved
"computed": "asSpecified",
"order": "orderOfAppearance",
"alsoAppliesTo": [
"::first-letter",
"::first-line",
"::placeholder"
],
"status": "experimental",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-position"
},
"font-synthesis-small-caps": {
"syntax": "auto | none",
"media": "visual",
Expand Down
Loading