Skip to content

Commit

Permalink
Consider outline not following border-radius a partial implementati…
Browse files Browse the repository at this point in the history
…on (#17598)

* Consider `outline` not following border-radius a partial implementation

Related to #12760, Fyrd/caniuse#6099

* Add `version_removed` to since-completed partial implementations
  • Loading branch information
cpmsmith committed Oct 31, 2022
1 parent 9e36544 commit d35fee0
Showing 1 changed file with 51 additions and 17 deletions.
68 changes: 51 additions & 17 deletions css/properties/outline.json
Expand Up @@ -6,18 +6,37 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline",
"spec_url": "https://w3c.github.io/csswg-drafts/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",
"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

0 comments on commit d35fee0

Please sign in to comment.