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 data point for IndexedDB improved error reporting for large value read failures #25277

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
47 changes: 47 additions & 0 deletions api/IDBRequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,53 @@
"deprecated": false
}
}
},
"transient_unrecoverable_read_errors": {
"__compat": {
"description": "Transient and unrecoverable read errors",
"spec_url": "https://w3c.github.io/IndexedDB/#:~:text=NotReadableError",
"support": {
"chrome": [
{
"version_added": "132",
"notes": "Returns a `NotReadableError` exception for unrecoverable read errors, and an `UnknownError` for transient read errors."
},
{
"version_added": "130",
"partial_implementation": true,
"notes": "Returns a `NotFoundError` exception for unrecoverable read errors, and a `DataError` for transient read errors."
}
],
"chrome_android": "mirror",
"edge": {
"version_added": false
},
"firefox": {
"version_added": "14"
},
"firefox_android": {
"version_added": "22"
},
"ie": {
"version_added": false
},
"oculus": "mirror",
"opera": "mirror",
"opera_android": "mirror",
"safari": {
"version_added": "8"
},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": "mirror"
},
"status": {
"experimental": false,
"standard_track": true,
"deprecated": false
}
}
}
},
"error_event": {
Expand Down
Loading