2013-01-06 06:14:44 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 06:14:44 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef SVGTextPositioningElement SVGTSpanElementBase;
|
|
|
|
|
2013-03-27 18:23:09 -07:00
|
|
|
class SVGTSpanElement MOZ_FINAL : public SVGTSpanElementBase
|
2013-01-06 06:14:44 -08:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
friend nsresult (::NS_NewSVGTSpanElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGTSpanElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2014-04-08 15:27:17 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx) MOZ_OVERRIDE;
|
2013-01-06 06:14:44 -08:00
|
|
|
|
|
|
|
public:
|
|
|
|
// nsIContent interface
|
2013-05-07 22:11:24 -07:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const MOZ_OVERRIDE;
|
2013-01-06 06:14:44 -08:00
|
|
|
|
2014-06-19 19:01:40 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2013-07-23 17:01:35 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual EnumAttributesInfo GetEnumInfo() MOZ_OVERRIDE;
|
|
|
|
virtual LengthAttributesInfo GetLengthInfo() MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
nsSVGEnum mEnumAttributes[1];
|
|
|
|
virtual nsSVGEnum* EnumAttributes() MOZ_OVERRIDE
|
|
|
|
{ return mEnumAttributes; }
|
|
|
|
|
|
|
|
nsSVGLength2 mLengthAttributes[1];
|
|
|
|
virtual nsSVGLength2* LengthAttributes() MOZ_OVERRIDE
|
|
|
|
{ return mLengthAttributes; }
|
2013-01-06 06:14:44 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGTSpanElement_h
|