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

FF97 CSS basic-shape path() function enabled by default #14498

Merged
merged 10 commits into from
Feb 28, 2022
27 changes: 16 additions & 11 deletions css/properties/clip-path.json
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,22 @@
"version_added": "71"
},
{
"version_added": "63",
"version_added": "64",
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"flags": [
{
"type": "preference",
"name": "layout.css.clip-path-path.enabled",
"value_to_set": "true"
}
]
}
],
"firefox_android": [
{
"version_added": "71"
},
{
"version_added": "64",
"flags": [
{
"type": "preference",
Expand All @@ -324,16 +339,6 @@
]
}
],
"firefox_android": {
"version_added": "63",
"flags": [
{
"type": "preference",
"name": "layout.css.clip-path-path.enabled",
"value_to_set": "true"
}
]
},
"ie": {
"version_added": false
},
Expand Down
64 changes: 40 additions & 24 deletions css/types/basic-shape.json
Original file line number Diff line number Diff line change
Expand Up @@ -270,30 +270,46 @@
"partial_implementation": true,
"notes": "Only supported on the <code>offset-path</code> property."
},
"firefox": {
"version_added": "63",
"partial_implementation": true,
"notes": "Only supported on the <code>clip-path</code> and <code>offset-path</code> properties.",
"flags": [
{
"type": "preference",
"name": "layout.css.clip-path-path.enabled",
"value_to_set": "true"
}
]
},
"firefox_android": {
"version_added": "63",
"partial_implementation": true,
"notes": "Only supported on the <code>clip-path</code> and <code>offset-path</code> properties.",
"flags": [
{
"type": "preference",
"name": "layout.css.clip-path-path.enabled",
"value_to_set": "true"
}
]
},
"firefox": [
{
"version_added": "97",
"partial_implementation": true,
"notes": "It is supported on the <code>d</code> SVG presentation attribute, <code>clip-path</code> and <code>offset-path</code> properties."
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
},
{
"version_added": "63",
"version_removed": "97",
"partial_implementation": true,
"notes": "From version 91 it can be used on the <code>d</code> SVG presentation attribute. For earlier versions it is only supported on the <code>clip-path</code> and <code>offset-path</code> properties.",
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"flags": [
{
"type": "preference",
"name": "layout.css.clip-path-path.enabled",
"value_to_set": "true"
}
]
}
],
"firefox_android": [
{
"version_added": "97",
"partial_implementation": true,
"notes": "It is supported on the <code>d</code> SVG presentation attribute, <code>clip-path</code> and <code>offset-path</code> properties."
},
{
"version_added": "63",
"version_removed": "79",
"partial_implementation": true,
"notes": "Only supported on the <code>clip-path</code> and <code>offset-path</code> properties.",
"flags": [
{
"type": "preference",
"name": "layout.css.clip-path-path.enabled",
"value_to_set": "true"
}
]
}
],
"ie": {
"version_added": false
},
Expand Down