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(css): add field-sizing property #718

Merged
merged 4 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
16 changes: 16 additions & 0 deletions css/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -4637,6 +4637,22 @@
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/empty-cells"
},
"field-sizing": {
"syntax": "content | fixed",
"media": "visual",
"inherited": false,
"animationType": "discrete",
"percentages": "no",
"groups": [
"CSS Basic User Interface"
],
"initial": "fixed",
"appliesto": "elementsWithDefaultPreferredSize",
"computed": "asSpecified",
"order": "perGrammar",
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/field-sizing"
},
"filter": {
"syntax": "none | <filter-function-list>",
"media": "visual",
Expand Down
1 change: 1 addition & 0 deletions css/properties.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
"elementsForWhichLayoutContainmentCanApply",
"elementsForWhichSizeContainmentCanApply",
"elementsThatAcceptInput",
"elementsWithDefaultPreferredSize",
"elementsWithDisplayBoxOrInlineBox",
"elementsWithDisplayMarker",
"elementsWithDisplayMozBoxMozInlineBox",
Expand Down
3 changes: 3 additions & 0 deletions l10n/css.json
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,9 @@
"elementsForWhichSizeContainmentCanApply": {
"en-US": "elements for which size containment can apply"
},
"elementsWithDefaultPreferredSize": {
"en-US": "Elements with default preferred size"
},
"elementsWithDisplayBoxOrInlineBox": {
"de": "Elemente mit einem CSS {{cssxref(\"display\")}} Wert von <code>box</code> oder <code>inline-box</code>",
"en-US": "elements with a CSS {{cssxref(\"display\")}} value of <code>box</code> or <code>inline-box</code>",
Expand Down
Loading