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/ArrayUtils.h"
8 :
9 : #include "mozilla/dom/SVGClipPathElement.h"
10 : #include "mozilla/dom/SVGClipPathElementBinding.h"
11 : #include "nsGkAtoms.h"
12 :
13 12 : NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(ClipPath)
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 : JSObject*
19 0 : SVGClipPathElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
20 : {
21 0 : return SVGClipPathElementBinding::Wrap(aCx, this, aGivenProto);
22 : }
23 :
24 : nsSVGElement::EnumInfo SVGClipPathElement::sEnumInfo[1] =
25 : {
26 : { &nsGkAtoms::clipPathUnits,
27 : sSVGUnitTypesMap,
28 : SVG_UNIT_TYPE_USERSPACEONUSE
29 : }
30 : };
31 :
32 : //----------------------------------------------------------------------
33 : // Implementation
34 :
35 6 : SVGClipPathElement::SVGClipPathElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
36 6 : : SVGClipPathElementBase(aNodeInfo)
37 : {
38 6 : }
39 :
40 : already_AddRefed<SVGAnimatedEnumeration>
41 0 : SVGClipPathElement::ClipPathUnits()
42 : {
43 0 : return mEnumAttributes[CLIPPATHUNITS].ToDOMAnimatedEnum(this);
44 : }
45 :
46 : nsSVGElement::EnumAttributesInfo
47 24 : SVGClipPathElement::GetEnumInfo()
48 : {
49 : return EnumAttributesInfo(mEnumAttributes, sEnumInfo,
50 24 : ArrayLength(sEnumInfo));
51 : }
52 :
53 : //----------------------------------------------------------------------
54 : // nsIDOMNode methods
55 :
56 0 : NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGClipPathElement)
57 :
58 : } // namespace dom
59 : } // namespace mozilla
|