diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-25 07:06:43 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-08-25 07:06:43 +0000 |
commit | b78f53ffb09a6aae6dbdc069c7cdd42d11b5eed2 (patch) | |
tree | e4c6248559f4fe559cfe32df5ccf81a3bdcb47ab /dom/base | |
parent | 8b397a63af13f7dfc127b1105f33cd652b2f1f6d (diff) | |
download | UXP-b78f53ffb09a6aae6dbdc069c7cdd42d11b5eed2.tar UXP-b78f53ffb09a6aae6dbdc069c7cdd42d11b5eed2.tar.gz UXP-b78f53ffb09a6aae6dbdc069c7cdd42d11b5eed2.tar.lz UXP-b78f53ffb09a6aae6dbdc069c7cdd42d11b5eed2.tar.xz UXP-b78f53ffb09a6aae6dbdc069c7cdd42d11b5eed2.zip |
Issue #618 - (async) Implement async attribute for inline module scripts.
This commit does several things:
- Moves the pref check from ScriptLoader to ns[I]Document so it can be called on
the document.
- Changes the atrribute freezing function to a better name that takes the
document as a parameter.
- Sets the proper async/defer attributes on HTML script elements based on
keywords and whether they are module scripts or not.
Diffstat (limited to 'dom/base')
-rw-r--r-- | dom/base/nsDocument.cpp | 13 | ||||
-rw-r--r-- | dom/base/nsIDocument.h | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/dom/base/nsDocument.cpp b/dom/base/nsDocument.cpp index dc4b23f2c..76490e6b4 100644 --- a/dom/base/nsDocument.cpp +++ b/dom/base/nsDocument.cpp @@ -12446,3 +12446,16 @@ nsIDocument::GetSelection(ErrorResult& aRv) return nsGlobalWindow::Cast(window)->GetSelection(aRv); } + +bool +nsIDocument::ModuleScriptsEnabled() +{ + static bool sEnabledForContent = false; + static bool sCachedPref = false; + if (!sCachedPref) { + sCachedPref = true; + Preferences::AddBoolVarCache(&sEnabledForContent, "dom.moduleScripts.enabled", false); + } + + return nsContentUtils::IsChromeDoc(this) || sEnabledForContent; +}
\ No newline at end of file diff --git a/dom/base/nsIDocument.h b/dom/base/nsIDocument.h index 33aac3a3d..21cd0aaf7 100644 --- a/dom/base/nsIDocument.h +++ b/dom/base/nsIDocument.h @@ -2851,6 +2851,8 @@ public: return mIsWebComponentsEnabled; } + bool ModuleScriptsEnabled(); + protected: bool GetUseCounter(mozilla::UseCounter aUseCounter) { |