-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the crypto property to api.crypto (in _globals) (#12636)
* Move the crypto property to api.crypto (in _globals) Worker support versions in Chrome and Firefox were determined with this test: https://mdn-bcd-collector.appspot.com/tests/api/WorkerGlobalScope/crypto For Safari, worker support in 10.1 was tested and also verified by source: https://trac.webkit.org/changeset/204481/webkit https://trac.webkit.org/browser/webkit/trunk/Source/WebCore/Configurations/Version.xcconfig?rev=204481 * Update crypto.json
- Loading branch information
Showing
2 changed files
with
108 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"api": { | ||
"crypto": { | ||
"__compat": { | ||
"mdn_url": "https://developer.mozilla.org/docs/Web/API/crypto_property", | ||
"spec_url": "https://w3c.github.io/webcrypto/#dom-windoworworkerglobalscope-crypto", | ||
"support": { | ||
"chrome": { | ||
"version_added": "37" | ||
}, | ||
"chrome_android": { | ||
"version_added": "37" | ||
}, | ||
"deno": { | ||
"version_added": "1.0" | ||
}, | ||
"edge": { | ||
"version_added": "12" | ||
}, | ||
"firefox": { | ||
"version_added": "1" | ||
}, | ||
"firefox_android": { | ||
"version_added": "4" | ||
}, | ||
"ie": { | ||
"version_added": "11", | ||
"prefix": "ms" | ||
}, | ||
"opera": { | ||
"version_added": "24" | ||
}, | ||
"opera_android": { | ||
"version_added": "24" | ||
}, | ||
"safari": { | ||
"version_added": "5" | ||
}, | ||
"safari_ios": { | ||
"version_added": "5" | ||
}, | ||
"samsunginternet_android": { | ||
"version_added": "3.0" | ||
}, | ||
"webview_android": { | ||
"version_added": "37" | ||
} | ||
}, | ||
"status": { | ||
"experimental": false, | ||
"standard_track": true, | ||
"deprecated": false | ||
} | ||
}, | ||
"worker_support": { | ||
"__compat": { | ||
"description": "Available in workers", | ||
"support": { | ||
"chrome": { | ||
"version_added": "37" | ||
}, | ||
"chrome_android": { | ||
"version_added": "37" | ||
}, | ||
"deno": { | ||
"version_added": "1.0" | ||
}, | ||
"edge": { | ||
"version_added": "79" | ||
}, | ||
"firefox": { | ||
"version_added": "48" | ||
}, | ||
"firefox_android": { | ||
"version_added": "48" | ||
}, | ||
"ie": { | ||
"version_added": false | ||
}, | ||
"opera": { | ||
"version_added": "24" | ||
}, | ||
"opera_android": { | ||
"version_added": "24" | ||
}, | ||
"safari": { | ||
"version_added": "10.1" | ||
}, | ||
"safari_ios": { | ||
"version_added": "10.3" | ||
}, | ||
"samsunginternet_android": { | ||
"version_added": "3.0" | ||
}, | ||
"webview_android": { | ||
"version_added": "37" | ||
} | ||
}, | ||
"status": { | ||
"experimental": false, | ||
"standard_track": true, | ||
"deprecated": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |