2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-01-05 13:41:27 +04:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_HTMLScriptElement_h
|
|
|
|
#define mozilla_dom_HTMLScriptElement_h
|
|
|
|
|
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2017-05-08 09:24:22 +03:00
|
|
|
#include "mozilla/dom/ScriptElement.h"
|
2013-01-05 13:41:27 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLScriptElement final : public nsGenericHTMLElement,
|
2017-05-08 09:24:22 +03:00
|
|
|
public ScriptElement {
|
2013-01-05 13:41:27 +04:00
|
|
|
public:
|
|
|
|
using Element::GetText;
|
|
|
|
|
2018-09-21 23:45:49 +03:00
|
|
|
HTMLScriptElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2014-03-15 23:00:17 +04:00
|
|
|
FromParser aFromParser);
|
2013-01-05 13:41:27 +04:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2018-03-26 23:41:43 +03:00
|
|
|
void GetInnerHTML(nsAString& aInnerHTML, OOMReporter& aError) override;
|
2013-01-05 13:41:27 +04:00
|
|
|
virtual void SetInnerHTML(const nsAString& aInnerHTML,
|
2017-12-21 01:43:18 +03:00
|
|
|
nsIPrincipal* aSubjectPrincipal,
|
2015-03-21 19:28:04 +03:00
|
|
|
mozilla::ErrorResult& aError) override;
|
2013-01-05 13:41:27 +04:00
|
|
|
|
|
|
|
// nsIScriptElement
|
2016-07-13 19:10:13 +03:00
|
|
|
virtual bool GetScriptType(nsAString& type) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void GetScriptText(nsAString& text) override;
|
|
|
|
virtual void GetScriptCharset(nsAString& charset) override;
|
2019-01-02 16:05:23 +03:00
|
|
|
virtual void FreezeExecutionAttrs(Document* aOwnerDoc) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual CORSMode GetCORSMode() const override;
|
2019-08-21 16:24:45 +03:00
|
|
|
virtual mozilla::dom::ReferrerPolicy GetReferrerPolicy() override;
|
2013-01-05 13:41:27 +04:00
|
|
|
|
|
|
|
// nsIContent
|
Bug 1555216 - Change the signature of BindToTree to be (BindContext&, nsINode& aParentNode). r=bzbarsky
BindContext was going to have way more information at first, but then I realized
that most of the things I wanted to know were basically a flag away using the
parent node.
Still I think it's worth it, now experimenting with BindToTree will only mean
adding a field to a struct that's included from a couple cpp files, instead of a
massive pain.
I also think this is clearer, and doing this highlights quite a few
inconsistencies in our code which I've left untouched, but commented with
FIXMEs.
Steps are:
$ for file in $(rg 'nsresult BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#nsresult BindToTree(Document\* aDocument, nsIContent\* aParent,#nsresult BindToTree(BindContext\&, nsINode\& aParent)#g' $file; done
$ for file in $(rg 'nsresult BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's# nsIContent\* aBindingParent) override#override#g' $file; done
$ for file in $(rg '::BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#::BindToTree(Document\* aDocument, nsIContent\* aParent,#::BindToTree(BindContext\& aContext, nsINode\& aParent)#g' $file; done
$ for file in $(rg '::BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#nsIContent\* aBindingParent)##g' $file; done
$ for file in $(rg '::BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#::BindToTree(aDocument, aParent, aBindingParent)#::BindToTree(aContext, aParent)#g' $file; done
$ ./mach clang-format
Then manual fixups.
Depends on D32948
Differential Revision: https://phabricator.services.mozilla.com/D32949
2019-05-29 07:27:04 +03:00
|
|
|
virtual nsresult BindToTree(BindContext&, nsINode& aParent) override;
|
2013-01-05 13:41:27 +04:00
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2017-11-02 06:35:52 +03:00
|
|
|
nsIPrincipal* aMaybeScriptedPrincipal,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAttrValue& aResult) override;
|
2013-01-05 13:41:27 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2013-01-05 13:41:27 +04:00
|
|
|
|
|
|
|
// Element
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult AfterSetAttr(int32_t aNamespaceID, nsAtom* aName,
|
2017-05-19 00:09:01 +03:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
2017-10-10 00:33:38 +03:00
|
|
|
nsIPrincipal* aMaybeScriptedPrincipal,
|
2017-05-19 00:09:01 +03:00
|
|
|
bool aNotify) override;
|
2013-01-05 13:41:27 +04:00
|
|
|
|
2013-01-05 13:41:28 +04:00
|
|
|
// WebIDL
|
2017-11-09 06:02:14 +03:00
|
|
|
void GetText(nsAString& aValue, ErrorResult& aRv);
|
|
|
|
|
|
|
|
void SetText(const nsAString& aValue, ErrorResult& aRv);
|
|
|
|
|
|
|
|
void GetCharset(nsAString& aCharset) {
|
|
|
|
GetHTMLAttr(nsGkAtoms::charset, aCharset);
|
|
|
|
}
|
|
|
|
void SetCharset(const nsAString& aCharset, ErrorResult& aRv) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::charset, aCharset, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Defer() { return GetBoolAttr(nsGkAtoms::defer); }
|
|
|
|
void SetDefer(bool aDefer, ErrorResult& aRv) {
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::defer, aDefer, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetSrc(nsAString& aSrc) { GetURIAttr(nsGkAtoms::src, nullptr, aSrc); }
|
2017-12-21 01:43:18 +03:00
|
|
|
void SetSrc(const nsAString& aSrc, nsIPrincipal* aTriggeringPrincipal,
|
|
|
|
ErrorResult& aRv) {
|
2017-11-09 06:02:14 +03:00
|
|
|
SetHTMLAttr(nsGkAtoms::src, aSrc, aTriggeringPrincipal, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetType(nsAString& aType) { GetHTMLAttr(nsGkAtoms::type, aType); }
|
|
|
|
void SetType(const nsAString& aType, ErrorResult& aRv) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::type, aType, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetHtmlFor(nsAString& aHtmlFor) {
|
|
|
|
GetHTMLAttr(nsGkAtoms::_for, aHtmlFor);
|
|
|
|
}
|
|
|
|
void SetHtmlFor(const nsAString& aHtmlFor, ErrorResult& aRv) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::_for, aHtmlFor, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetEvent(nsAString& aEvent) { GetHTMLAttr(nsGkAtoms::event, aEvent); }
|
|
|
|
void SetEvent(const nsAString& aEvent, ErrorResult& aRv) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::event, aEvent, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Async() { return mForceAsync || GetBoolAttr(nsGkAtoms::async); }
|
|
|
|
|
|
|
|
void SetAsync(bool aValue, ErrorResult& aRv) {
|
|
|
|
mForceAsync = false;
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::async, aValue, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NoModule() { return GetBoolAttr(nsGkAtoms::nomodule); }
|
|
|
|
|
|
|
|
void SetNoModule(bool aValue, ErrorResult& aRv) {
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::nomodule, aValue, aRv);
|
|
|
|
}
|
|
|
|
|
2014-09-06 06:42:33 +04:00
|
|
|
void GetCrossOrigin(nsAString& aResult) {
|
|
|
|
// Null for both missing and invalid defaults is ok, since we
|
|
|
|
// always parse to an enum value, so we don't need an invalid
|
|
|
|
// default, and we _want_ the missing default to be null.
|
|
|
|
GetEnumAttr(nsGkAtoms::crossorigin, nullptr, aResult);
|
|
|
|
}
|
|
|
|
void SetCrossOrigin(const nsAString& aCrossOrigin, ErrorResult& aError) {
|
|
|
|
SetOrRemoveNullableStringAttr(nsGkAtoms::crossorigin, aCrossOrigin, aError);
|
|
|
|
}
|
2015-08-13 06:19:11 +03:00
|
|
|
void GetIntegrity(nsAString& aIntegrity) {
|
|
|
|
GetHTMLAttr(nsGkAtoms::integrity, aIntegrity);
|
|
|
|
}
|
2017-11-09 06:02:14 +03:00
|
|
|
void SetIntegrity(const nsAString& aIntegrity, ErrorResult& aRv) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::integrity, aIntegrity, aRv);
|
2015-08-13 06:19:11 +03:00
|
|
|
}
|
2018-11-13 17:33:02 +03:00
|
|
|
void SetReferrerPolicy(const nsAString& aReferrerPolicy,
|
|
|
|
ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::referrerpolicy, aReferrerPolicy, aError);
|
|
|
|
}
|
|
|
|
void GetReferrerPolicy(nsAString& aReferrerPolicy) {
|
2020-09-23 18:17:15 +03:00
|
|
|
GetEnumAttr(nsGkAtoms::referrerpolicy, "", aReferrerPolicy);
|
2018-11-13 17:33:02 +03:00
|
|
|
}
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2013-01-05 13:41:27 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLScriptElement();
|
|
|
|
|
2017-11-09 06:02:14 +03:00
|
|
|
virtual bool GetAsyncState() override { return Async(); }
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2017-05-08 09:24:22 +03:00
|
|
|
|
|
|
|
// ScriptElement
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool HasScriptContent() override;
|
2013-01-05 13:41:27 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLScriptElement_h
|