Bug 1778289 - Part 12: Update spec links as the PR is merged. r=jonco,yulia

The PR has been merged.
See https://html.spec.whatwg.org/multipage/webappapis.html#import-maps

Differential Revision: https://phabricator.services.mozilla.com/D158828
This commit is contained in:
Yoshi Cheng-Hao Huang
2022-10-07 13:56:27 +00:00
parent d5968bc01d
commit 6d98cdb61b
10 changed files with 38 additions and 36 deletions

View File

@@ -181,7 +181,7 @@ class ModuleLoaderBase : public nsISupports {
// for fetches to finish and for imports to become avilable.
nsCOMPtr<nsISerialEventTarget> mEventTarget;
// https://whatpr.org/html/8075/webappapis.html#import-maps-allowed
// https://html.spec.whatwg.org/multipage/webappapis.html#import-maps-allowed
//
// Each Window has an import maps allowed boolean, initially true.
bool mImportMapsAllowed = true;
@@ -285,12 +285,12 @@ class ModuleLoaderBase : public nsISupports {
mozilla::UniquePtr<ImportMap> ParseImportMap(ScriptLoadRequest* aRequest);
// Implements
// https://whatpr.org/html/8075/webappapis.html#register-an-import-map
// https://html.spec.whatwg.org/multipage/webappapis.html#register-an-import-map
void RegisterImportMap(mozilla::UniquePtr<ImportMap> aImportMap);
// Getter for mImportMapsAllowed.
bool IsImportMapAllowed() const { return mImportMapsAllowed; }
// https://whatpr.org/html/8075/webappapis.html#disallow-further-import-maps
// https://html.spec.whatwg.org/multipage/webappapis.html#disallow-further-import-maps
void DisallowImportMaps() { mImportMapsAllowed = false; }
// Returns true if the module for given URL is already fetched.