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-06 18:14:44 +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_SVGTSpanElement_h
|
|
|
|
#define mozilla_dom_SVGTSpanElement_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGTextPositioningElement.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGTSpanElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 18:14:44 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef SVGTextPositioningElement SVGTSpanElementBase;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGTSpanElement final : public SVGTSpanElementBase
|
2013-01-06 18:14:44 +04:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
friend nsresult (::NS_NewSVGTSpanElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-09-01 05:08:04 +04:00
|
|
|
explicit SVGTSpanElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 18:14:44 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// nsIContent interface
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
|
2013-01-06 18:14:44 +04:00
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2013-07-24 04:01:35 +04:00
|
|
|
|
|
|
|
protected:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
|
|
|
virtual LengthAttributesInfo GetLengthInfo() override;
|
2013-07-24 04:01:35 +04:00
|
|
|
|
|
|
|
nsSVGEnum mEnumAttributes[1];
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsSVGEnum* EnumAttributes() override
|
2013-07-24 04:01:35 +04:00
|
|
|
{ return mEnumAttributes; }
|
|
|
|
|
|
|
|
nsSVGLength2 mLengthAttributes[1];
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsSVGLength2* LengthAttributes() override
|
2013-07-24 04:01:35 +04:00
|
|
|
{ return mLengthAttributes; }
|
2013-01-06 18:14:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGTSpanElement_h
|