Line data Source code
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 0 : NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Stop)
11 :
12 : namespace mozilla {
13 : namespace dom {
14 :
15 : JSObject*
16 0 : SVGStopElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
17 : {
18 0 : return SVGStopElementBinding::Wrap(aCx, this, aGivenProto);
19 : }
20 :
21 : nsSVGElement::NumberInfo SVGStopElement::sNumberInfo =
22 : { &nsGkAtoms::offset, 0, true };
23 :
24 : //----------------------------------------------------------------------
25 : // Implementation
26 :
27 0 : SVGStopElement::SVGStopElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
28 0 : : SVGStopElementBase(aNodeInfo)
29 : {
30 0 : }
31 :
32 : //----------------------------------------------------------------------
33 : // nsIDOMNode methods
34 :
35 0 : NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGStopElement)
36 :
37 : //----------------------------------------------------------------------
38 :
39 : already_AddRefed<SVGAnimatedNumber>
40 0 : SVGStopElement::Offset()
41 : {
42 0 : return mOffset.ToDOMAnimatedNumber(this);
43 : }
44 :
45 : //----------------------------------------------------------------------
46 : // sSVGElement methods
47 :
48 : nsSVGElement::NumberAttributesInfo
49 0 : SVGStopElement::GetNumberInfo()
50 : {
51 0 : return NumberAttributesInfo(&mOffset, &sNumberInfo, 1);
52 : }
53 :
54 : //----------------------------------------------------------------------
55 : // nsIContent methods
56 :
57 : NS_IMETHODIMP_(bool)
58 0 : SVGStopElement::IsAttributeMapped(const nsIAtom* name) const
59 : {
60 : static const MappedAttributeEntry* const map[] = {
61 : sGradientStopMap
62 : };
63 :
64 0 : return FindAttributeDependence(name, map) ||
65 0 : SVGStopElementBase::IsAttributeMapped(name);
66 : }
67 :
68 : } // namespace dom
69 : } // namespace mozilla
70 :
|