-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Test that appcache is not supported in shared workers #5001
Conversation
Firefox (nightly channel)Testing web-platform-tests at revision 64672af45377a4efa2a6cf1bc368c37acc0678dd All results1 test ran/html/browsers/offline/no-appcache-in-shared-workers-historical.html
|
Chrome (unstable channel)Testing web-platform-tests at revision 64672af45377a4efa2a6cf1bc368c37acc0678dd All results1 test ran/html/browsers/offline/no-appcache-in-shared-workers-historical.html
|
|
||
if (typeof SharedWorker === "undefined") { | ||
test(() => { | ||
assert_equals(typeof SharedWorker, "undefined"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given the outer if
, I think no assertion at all here would be clearer.
Follows whatwg/html#2384.