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/svg | |
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/svg')
-rw-r--r-- | dom/svg/SVGScriptElement.cpp | 2 | ||||
-rw-r--r-- | dom/svg/SVGScriptElement.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dom/svg/SVGScriptElement.cpp b/dom/svg/SVGScriptElement.cpp index f2fb3ff5c..1e0647104 100644 --- a/dom/svg/SVGScriptElement.cpp +++ b/dom/svg/SVGScriptElement.cpp @@ -137,7 +137,7 @@ SVGScriptElement::GetScriptCharset(nsAString& charset) } void -SVGScriptElement::FreezeUriAsyncDefer() +SVGScriptElement::FreezeExecutionAttrs(nsIDocument* aOwnerDoc) { if (mFrozen) { return; diff --git a/dom/svg/SVGScriptElement.h b/dom/svg/SVGScriptElement.h index 9f098e047..d89f860fb 100644 --- a/dom/svg/SVGScriptElement.h +++ b/dom/svg/SVGScriptElement.h @@ -44,7 +44,7 @@ public: virtual bool GetScriptType(nsAString& type) override; virtual void GetScriptText(nsAString& text) override; virtual void GetScriptCharset(nsAString& charset) override; - virtual void FreezeUriAsyncDefer() override; + virtual void FreezeExecutionAttrs(nsIDocument* aOwnerDoc) override; virtual CORSMode GetCORSMode() const override; // ScriptElement |