Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1831583 - Part 3: Mark [static import script from data: URL shoul…
…d be allowed.] failed as expected in [shared|dedicated]-worker-import-data-url-cross-origin.html.ini. r=dom-worker-reviewers,asuth In the [static import script from data: URL should be allowed.] case, The worker will load the data URI, which imports "/resources/static-import-script-block-cross-origin.js". And static-import-script-block-cross-origin.js will static import 'export-block-cross-origin.js' According to the current spec, the script "export-block-cross-origin.js" is in the same origin of the document, therefore it should be loaded. But with Gecko's implementation, the script "export-block-cross-origin.js" is cross-origin with the main worker script (which is loaded by data URI), so the script is blocked. Mark this test case as failed according to the spec issue whatwg/html#9571 Differential Revision: https://phabricator.services.mozilla.com/D187900
- Loading branch information