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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGScriptElement_h
|
|
|
|
#define mozilla_dom_SVGScriptElement_h
|
|
|
|
|
|
|
|
#include "nsSVGElement.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsSVGString.h"
|
2017-05-08 09:24:22 +03:00
|
|
|
#include "mozilla/dom/ScriptElement.h"
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2013-03-22 04:05:19 +04:00
|
|
|
class nsIDocument;
|
|
|
|
|
2013-01-05 13:41:28 +04:00
|
|
|
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);
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef nsSVGElement SVGScriptElementBase;
|
|
|
|
|
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));
|
2014-06-20 06:01:40 +04: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;
|
|
|
|
virtual void FreezeUriAsyncDefer() override;
|
|
|
|
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:
|
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aCompileEventHandlers) override;
|
2013-01-05 13:41:28 +04:00
|
|
|
virtual nsresult AfterSetAttr(int32_t aNamespaceID, nsIAtom* aName,
|
2017-05-19 00:09:01 +03:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
|
|
|
bool aNotify) override;
|
2013-01-05 13:41:28 +04:00
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAttrValue& aResult) override;
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) 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);
|
2013-06-15 02:37:27 +04:00
|
|
|
already_AddRefed<SVGAnimatedString> Href();
|
2013-01-05 13:41:28 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
~SVGScriptElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-01-05 13:41:28 +04:00
|
|
|
|
2016-08-26 13:06:04 +03:00
|
|
|
enum { HREF, XLINK_HREF };
|
|
|
|
nsSVGString mStringAttributes[2];
|
|
|
|
static StringInfo sStringInfo[2];
|
2013-01-05 13:41:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGScriptElement_h
|