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

Consider outline not following border-radius a partial implementation #17598

Merged
merged 2 commits into from
Oct 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
68 changes: 51 additions & 17 deletions css/properties/outline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,37 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline",
"spec_url": "https://drafts.csswg.org/css-ui/#outline",
"support": {
"chrome": {
"version_added": "1",
"notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>."
},
"chrome": [
{
"version_added": "94"
},
{
"version_added": "1",
cpmsmith marked this conversation as resolved.
Show resolved Hide resolved
"version_removed": "94",
"partial_implementation": true,
"notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>."
}
],
"chrome_android": "mirror",
"edge": {
"version_added": "12",
"notes": "Before Edge 94, <code>outline</code> does not follow the shape of <code>border-radius</code>."
},
"edge": [
{
"version_added": "94"
},
{
"version_added": "12",
"version_removed": "94",
"partial_implementation": true,
"notes": "Before Edge 94, <code>outline</code> does not follow the shape of <code>border-radius</code>."
}
],
"firefox": [
{
"version_added": "88"
},
{
"version_added": "1.5",
"version_removed": "88",
"partial_implementation": true,
"notes": "Before Firefox 88, <code>outline</code> does not follow the shape of <code>border-radius</code>."
},
{
Expand All @@ -31,25 +50,40 @@
"version_added": "8"
},
"oculus": "mirror",
"opera": {
"version_added": "7",
"notes": "Before Opera 80, <code>outline</code> does not follow the shape of <code>border-radius</code>."
},
"opera": [
{
"version_added": "80"
},
{
"version_added": "7",
"version_removed": "80",
"partial_implementation": true,
"notes": "Before Opera 80, <code>outline</code> does not follow the shape of <code>border-radius</code>."
}
],
"opera_android": {
"version_added": "10.1"
},
"safari": {
"version_added": "1.2",
"notes": "<code>outline</code> does not follow the shape of <code>border-radius</code>. See <a href='https://webkit.org/b/231433'>bug 231433</a>."
"partial_implementation": true,
"notes": "<code>outline</code> does not follow the shape of <code>border-radius</code>. See <a href='https://webkit.org/b/20807'>bug 20807</a>."
},
"safari_ios": "mirror",
"samsunginternet_android": {
"version_added": "1.0"
},
"webview_android": {
"version_added": "1",
"notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>."
}
"webview_android": [
{
"version_added": "94"
},
{
"version_added": "1",
"version_removed": "94",
"partial_implementation": true,
"notes": "Before Chrome 94, <code>outline</code> does not follow the shape of <code>border-radius</code>."
}
]
},
"status": {
"experimental": false,
Expand Down