forked from mirrors/gecko-dev
https://www.w3.org/2012/01/05-svg-irc#T21-07-03 says that async and defer should be supported as does the specification https://www.w3.org/TR/SVG2/interact.html#ScriptElement https://github.com/w3c/svgwg/issues/918 tracks getting the SVGScriptElement webidl updated. Differential Revision: https://phabricator.services.mozilla.com/D181936
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsIScriptElement.h"
|
|
|
|
#include "mozilla/dom/Document.h"
|
|
#include "mozilla/dom/ReferrerPolicyBinding.h"
|
|
#include "nsIParser.h"
|
|
#include "nsIWeakReference.h"
|
|
|
|
using JS::loader::ScriptKind;
|
|
|
|
void nsIScriptElement::SetCreatorParser(nsIParser* aParser) {
|
|
mCreatorParser = do_GetWeakReference(aParser);
|
|
}
|
|
|
|
void nsIScriptElement::UnblockParser() {
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
if (parser) {
|
|
parser->UnblockParser();
|
|
}
|
|
}
|
|
|
|
void nsIScriptElement::ContinueParserAsync() {
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
if (parser) {
|
|
parser->ContinueInterruptedParsingAsync();
|
|
}
|
|
}
|
|
|
|
void nsIScriptElement::BeginEvaluating() {
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
if (parser) {
|
|
parser->IncrementScriptNestingLevel();
|
|
}
|
|
}
|
|
|
|
void nsIScriptElement::EndEvaluating() {
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
if (parser) {
|
|
parser->DecrementScriptNestingLevel();
|
|
}
|
|
}
|
|
|
|
already_AddRefed<nsIParser> nsIScriptElement::GetCreatorParser() {
|
|
nsCOMPtr<nsIParser> parser = do_QueryReferent(mCreatorParser);
|
|
return parser.forget();
|
|
}
|
|
|
|
mozilla::dom::ReferrerPolicy nsIScriptElement::GetReferrerPolicy() {
|
|
return mozilla::dom::ReferrerPolicy::_empty;
|
|
}
|
|
|
|
void nsIScriptElement::DetermineKindFromType(
|
|
const mozilla::dom::Document* aOwnerDoc) {
|
|
MOZ_ASSERT((mKind != ScriptKind::eModule) &&
|
|
(mKind != ScriptKind::eImportMap) && !mAsync && !mDefer &&
|
|
!mExternal);
|
|
|
|
nsAutoString type;
|
|
GetScriptType(type);
|
|
|
|
if (!type.IsEmpty()) {
|
|
if (aOwnerDoc->ModuleScriptsEnabled() &&
|
|
type.LowerCaseEqualsASCII("module")) {
|
|
mKind = ScriptKind::eModule;
|
|
}
|
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#prepare-the-script-element
|
|
// Step 11. Otherwise, if the script block's type string is an ASCII
|
|
// case-insensitive match for the string "importmap", then set el's type to
|
|
// "importmap".
|
|
if (aOwnerDoc->ImportMapsEnabled() &&
|
|
type.LowerCaseEqualsASCII("importmap")) {
|
|
mKind = ScriptKind::eImportMap;
|
|
}
|
|
}
|
|
}
|