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:28 +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/. */
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGSCRIPTELEMENT_H_
|
|
|
|
#define DOM_SVG_SVGSCRIPTELEMENT_H_
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2019-04-04 20:40:56 +03:00
|
|
|
#include "SVGAnimatedString.h"
|
2019-01-25 02:40:25 +03:00
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
2017-05-08 09:24:22 +03:00
|
|
|
#include "mozilla/dom/ScriptElement.h"
|
2019-04-04 20:40:56 +03:00
|
|
|
#include "mozilla/dom/SVGElement.h"
|
2013-01-05 13:41:28 +04:00
|
|
|
|
|
|
|
nsresult NS_NewSVGScriptElement(
|
2014-06-20 06:01:40 +04:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2013-01-05 13:41:28 +04:00
|
|
|
mozilla::dom::FromParser aFromParser);
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2020-07-15 13:37:55 +03:00
|
|
|
using SVGScriptElementBase = SVGElement;
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGScriptElement final : public SVGScriptElementBase,
|
2017-05-08 09:24:22 +03:00
|
|
|
public ScriptElement {
|
2013-01-05 13:41:28 +04:00
|
|
|
protected:
|
|
|
|
friend nsresult(::NS_NewSVGScriptElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2013-01-05 13:41:28 +04:00
|
|
|
mozilla::dom::FromParser aFromParser));
|
2018-09-21 23:45:49 +03:00
|
|
|
SVGScriptElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2013-01-05 13:41:28 +04:00
|
|
|
FromParser aFromParser);
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-05 13:41:28 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// interfaces:
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// 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;
|
2013-02-03 00:23:18 +04:00
|
|
|
|
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:28 +04:00
|
|
|
|
|
|
|
// nsIContent specializations:
|
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;
|
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* aSubjectPrincipal,
|
2017-05-19 00:09:01 +03:00
|
|
|
bool aNotify) override;
|
2013-01-05 13:41:28 +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:28 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2013-01-05 13:41:28 +04:00
|
|
|
|
|
|
|
// WebIDL
|
2013-02-03 00:23:18 +04:00
|
|
|
void GetType(nsAString& aType);
|
|
|
|
void SetType(const nsAString& aType, ErrorResult& rv);
|
2014-09-06 06:42:33 +04:00
|
|
|
void GetCrossOrigin(nsAString& aCrossOrigin);
|
|
|
|
void SetCrossOrigin(const nsAString& aCrossOrigin, ErrorResult& aError);
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> Href();
|
2013-01-05 13:41:28 +04:00
|
|
|
|
|
|
|
protected:
|
2019-04-18 01:38:02 +03:00
|
|
|
~SVGScriptElement() = default;
|
2014-07-09 01:23:16 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2017-11-09 06:02:14 +03:00
|
|
|
// SVG Script elements don't have the ability to set async properties on
|
|
|
|
// themselves, so this will always return false.
|
|
|
|
virtual bool GetAsyncState() override { return false; }
|
|
|
|
|
2016-08-26 13:06:04 +03:00
|
|
|
enum { HREF, XLINK_HREF };
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedString mStringAttributes[2];
|
2016-08-26 13:06:04 +03:00
|
|
|
static StringInfo sStringInfo[2];
|
2013-01-05 13:41:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGSCRIPTELEMENT_H_
|