diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-25 07:06:43 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-08-30 09:51:18 +0000 |
commit | 77e8ba7eaf3ca00f25d0507cf17de2f50741f335 (patch) | |
tree | b9025ffd0f46746481cd809598cd62142764f225 /dom/script/ScriptElement.cpp | |
parent | e854d58633a2c877778410393914146f7a137495 (diff) | |
download | UXP-77e8ba7eaf3ca00f25d0507cf17de2f50741f335.tar UXP-77e8ba7eaf3ca00f25d0507cf17de2f50741f335.tar.gz UXP-77e8ba7eaf3ca00f25d0507cf17de2f50741f335.tar.lz UXP-77e8ba7eaf3ca00f25d0507cf17de2f50741f335.tar.xz UXP-77e8ba7eaf3ca00f25d0507cf17de2f50741f335.zip |
Issue #618 - Implement async attribute for inline module scripts. (uplift)
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/script/ScriptElement.cpp')
-rw-r--r-- | dom/script/ScriptElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/script/ScriptElement.cpp b/dom/script/ScriptElement.cpp index 9cb239c66..eb20dbf32 100644 --- a/dom/script/ScriptElement.cpp +++ b/dom/script/ScriptElement.cpp @@ -128,11 +128,11 @@ ScriptElement::MaybeProcessScript() return false; } - FreezeUriAsyncDefer(); + nsIDocument* ownerDoc = cont->OwnerDoc(); + FreezeExecutionAttrs(ownerDoc); mAlreadyStarted = true; - nsIDocument* ownerDoc = cont->OwnerDoc(); nsCOMPtr<nsIParser> parser = ((nsIScriptElement*) this)->GetCreatorParser(); if (parser) { nsCOMPtr<nsIContentSink> sink = parser->GetContentSink(); |