Skip to content

Commit

Permalink
Mark autofocus as fully support in Firefox and Safari (mdn#21707)
Browse files Browse the repository at this point in the history
This was fixed in Firefox 110 and BCD has already been partially
updated:
https://bugzilla.mozilla.org/show_bug.cgi?id=1575154
mdn#18856
mdn#19482

Safari support hasn't been researched again, just made more consistent
with a previous BCD update:
mdn#14782
  • Loading branch information
foolip authored Dec 22, 2023
1 parent abd93e0 commit ec6692d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 15 deletions.
17 changes: 12 additions & 5 deletions api/HTMLElement.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,17 @@
"notes": "Supported for <code>HTMLButtonElement</code>, <code>HTMLInputElement</code>, <code>HTMLSelectElement</code>, and <code>HTMLTextAreaElement</code>."
}
],
"firefox": {
"version_added": "1",
"partial_implementation": true,
"notes": "Supported for <code>HTMLButtonElement</code>, <code>HTMLInputElement</code>, <code>HTMLSelectElement</code>, and <code>HTMLTextAreaElement</code>."
},
"firefox": [
{
"version_added": "110"
},
{
"version_added": "1",
"version_removed": "110",
"partial_implementation": true,
"notes": "Supported for <code>HTMLButtonElement</code>, <code>HTMLInputElement</code>, <code>HTMLSelectElement</code>, and <code>HTMLTextAreaElement</code>."
}
],
"firefox_android": "mirror",
"ie": {
"version_added": "10",
Expand Down Expand Up @@ -286,6 +292,7 @@
},
{
"version_added": "4",
"version_removed": "15.4",
"partial_implementation": true,
"notes": "Supported for <code>HTMLButtonElement</code>, <code>HTMLInputElement</code>, <code>HTMLSelectElement</code>, and <code>HTMLTextAreaElement</code>."
}
Expand Down
32 changes: 22 additions & 10 deletions html/global_attributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,17 @@
"notes": "Supported for the <code>&lt;button&gt;</code>, <code>&lt;input&gt;</code>, <code>&lt;select&gt;</code>, and <code>&lt;textarea&gt;</code> elements."
}
],
"firefox": {
"version_added": "1",
"partial_implementation": true,
"notes": "Supported for the <code>&lt;button&gt;</code>, <code>&lt;input&gt;</code>, <code>&lt;select&gt;</code>, and <code>&lt;textarea&gt;</code> elements."
},
"firefox": [
{
"version_added": "110"
},
{
"version_added": "1",
"version_removed": "110",
"partial_implementation": true,
"notes": "Supported for the <code>&lt;button&gt;</code>, <code>&lt;input&gt;</code>, <code>&lt;select&gt;</code>, and <code>&lt;textarea&gt;</code> elements."
}
],
"firefox_android": "mirror",
"ie": {
"version_added": "10",
Expand Down Expand Up @@ -284,11 +290,17 @@
"notes": "Supported for the <code>&lt;button&gt;</code>, <code>&lt;input&gt;</code>, <code>&lt;select&gt;</code>, and <code>&lt;textarea&gt;</code> elements."
}
],
"safari": {
"version_added": "4",
"partial_implementation": true,
"notes": "Supported for the <code>&lt;button&gt;</code>, <code>&lt;input&gt;</code>, <code>&lt;select&gt;</code>, and <code>&lt;textarea&gt;</code> elements."
},
"safari": [
{
"version_added": "15.4"
},
{
"version_added": "4",
"version_removed": "15.4",
"partial_implementation": true,
"notes": "Supported for the <code>&lt;button&gt;</code>, <code>&lt;input&gt;</code>, <code>&lt;select&gt;</code>, and <code>&lt;textarea&gt;</code> elements."
}
],
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": [
Expand Down

0 comments on commit ec6692d

Please sign in to comment.