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

Add feComposite support for operator attribute's lighter value #9074

Merged
merged 13 commits into from
Mar 3, 2021
39 changes: 20 additions & 19 deletions svg/elements/feComposite.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
"version_added": null
},
"opera": {
"version_added": false
"version_added": true
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note, these must all be true/supported because you can't have support for "lighter" if the parent item is not supported (as per bugs). I am not sure what versions.

If you believe chrome then this was in from release 1 (webkit and from then in Blink). Should I leave these alone or assume that support came in earliest matching version of Blink/Webkit for the other browsers? That would mean, for example, that Opera would change to version 15 and I'd assume there was no support in Presto. Thoughts?

},
"opera_android": {
"version_added": null
"version_added": true
},
"safari": {
"version_added": null
"version_added": true
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
},
"safari_ios": {
"version_added": null
"version_added": true
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
},
"samsunginternet_android": {
"version_added": true
Expand Down Expand Up @@ -108,10 +108,12 @@
"version_added": "≤18"
},
"firefox": {
"version_added": true
"version_added": true,
"notes": "BackgroundImage/BackgroundAlpha are not supported (see <a href='https://bugzil.la/1171438'>bug 1171438</a>)."
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
},
"firefox_android": {
"version_added": true
"version_added": true,
"notes": "BackgroundImage/BackgroundAlpha are not supported (see <a href='https://bugzil.la/1171438'>bug 1171438</a>)."
},
"ie": {
"version_added": null
Expand Down Expand Up @@ -332,44 +334,43 @@
},
"lighterForError": {
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
ddbeck marked this conversation as resolved.
Show resolved Hide resolved
"__compat": {
"description": "<code>lighter</code> for <code>operator</code>",
"description": "<code>operator</code> value: <code>lighter</code>",
"support": {
"chrome": {
"version_added": false
"version_added": "45"
},
"chrome_android": {
"version_added": false
"version_added": "45"
},
"edge": {
"version_added": "≤18",
"version_removed": "79"
"version_added": "≤18"
},
"firefox": {
"version_added": true
"version_added": "86"
},
"firefox_android": {
"version_added": true
"version_added": "86"
},
"ie": {
"version_added": null
},
"opera": {
"version_added": false
"version_added": "32"
},
"opera_android": {
"version_added": null
"version_added": "32"
},
"safari": {
"version_added": null
"version_added": "4"
},
"safari_ios": {
"version_added": null
"version_added": "3"
},
"samsunginternet_android": {
"version_added": false
"version_added": "5.0"
},
"webview_android": {
"version_added": false
"version_added": "45"
}
},
"status": {
Expand Down