summaryrefslogtreecommitdiffstats
path: root/dom/base/nsScriptLoader.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-07-10 13:28:03 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-07-10 13:28:03 +0200
commite0a8dcfed131ffa58a5e2cb1d30fe48c745c2fdc (patch)
treea3e4bc52cb2fdce52d8dbf88a4db41d81017c1b8 /dom/base/nsScriptLoader.cpp
parent100c6a7e95b8e9624fc43fabc96d88070635d1ef (diff)
downloadUXP-e0a8dcfed131ffa58a5e2cb1d30fe48c745c2fdc.tar
UXP-e0a8dcfed131ffa58a5e2cb1d30fe48c745c2fdc.tar.gz
UXP-e0a8dcfed131ffa58a5e2cb1d30fe48c745c2fdc.tar.lz
UXP-e0a8dcfed131ffa58a5e2cb1d30fe48c745c2fdc.tar.xz
UXP-e0a8dcfed131ffa58a5e2cb1d30fe48c745c2fdc.zip
Bug 1330900 - Implement <script nomodule>
This patch implements: - noModule getter/setter for HTMLScriptElement - the nomodule attribute for HTMLScriptElement - the logic in nsScriptLoader that denies the loading of a nomodule script - tests Tag #618
Diffstat (limited to 'dom/base/nsScriptLoader.cpp')
-rw-r--r--dom/base/nsScriptLoader.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/dom/base/nsScriptLoader.cpp b/dom/base/nsScriptLoader.cpp
index 6f8251fc3..61d122386 100644
--- a/dom/base/nsScriptLoader.cpp
+++ b/dom/base/nsScriptLoader.cpp
@@ -1452,7 +1452,7 @@ nsScriptLoader::ProcessScriptElement(nsIScriptElement *aElement)
nsCOMPtr<nsIContent> scriptContent = do_QueryInterface(aElement);
- // Step 12. Check that the script is not an eventhandler
+ // Step 13. Check that the script is not an eventhandler
if (IsScriptEventHandler(scriptContent)) {
return false;
}
@@ -1486,7 +1486,18 @@ nsScriptLoader::ProcessScriptElement(nsIScriptElement *aElement)
}
}
- // Step 14. in the HTML5 spec
+ // "In modern user agents that support module scripts, the script element with
+ // the nomodule attribute will be ignored".
+ // "The nomodule attribute must not be specified on module scripts (and will
+ // be ignored if it is)."
+ if (ModuleScriptsEnabled() &&
+ scriptKind == nsScriptKind::Classic &&
+ scriptContent->IsHTMLElement() &&
+ scriptContent->HasAttr(kNameSpaceID_None, nsGkAtoms::nomodule)) {
+ return false;
+ }
+
+ // Step 15. and later in the HTML5 spec
nsresult rv = NS_OK;
RefPtr<nsScriptLoadRequest> request;
if (aElement->GetScriptExternal()) {