1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 #include "mozilla/dom/SVGStopElement.h"
8 #include "mozilla/dom/SVGStopElementBinding.h"
9 
10 NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Stop)
11 
12 namespace mozilla {
13 namespace dom {
14 
WrapNode(JSContext * aCx,JS::Handle<JSObject * > aGivenProto)15 JSObject* SVGStopElement::WrapNode(JSContext* aCx,
16                                    JS::Handle<JSObject*> aGivenProto) {
17   return SVGStopElementBinding::Wrap(aCx, this, aGivenProto);
18 }
19 
20 nsSVGElement::NumberInfo SVGStopElement::sNumberInfo = {&nsGkAtoms::offset, 0,
21                                                         true};
22 
23 //----------------------------------------------------------------------
24 // Implementation
25 
SVGStopElement(already_AddRefed<mozilla::dom::NodeInfo> & aNodeInfo)26 SVGStopElement::SVGStopElement(
27     already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
28     : SVGStopElementBase(aNodeInfo) {}
29 
30 //----------------------------------------------------------------------
31 // nsIDOMNode methods
32 
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGStopElement)33 NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGStopElement)
34 
35 //----------------------------------------------------------------------
36 
37 already_AddRefed<SVGAnimatedNumber> SVGStopElement::Offset() {
38   return mOffset.ToDOMAnimatedNumber(this);
39 }
40 
41 //----------------------------------------------------------------------
42 // sSVGElement methods
43 
GetNumberInfo()44 nsSVGElement::NumberAttributesInfo SVGStopElement::GetNumberInfo() {
45   return NumberAttributesInfo(&mOffset, &sNumberInfo, 1);
46 }
47 
48 //----------------------------------------------------------------------
49 // nsIContent methods
50 
NS_IMETHODIMP_(bool)51 NS_IMETHODIMP_(bool)
52 SVGStopElement::IsAttributeMapped(const nsAtom* name) const {
53   static const MappedAttributeEntry* const map[] = {sGradientStopMap};
54 
55   return FindAttributeDependence(name, map) ||
56          SVGStopElementBase::IsAttributeMapped(name);
57 }
58 
59 }  // namespace dom
60 }  // namespace mozilla
61