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/SVGGElement.h"
8 : #include "mozilla/dom/SVGGElementBinding.h"
9 :
10 24 : NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(G)
11 :
12 : namespace mozilla {
13 : namespace dom {
14 :
15 : JSObject*
16 0 : SVGGElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
17 : {
18 0 : return SVGGElementBinding::Wrap(aCx, this, aGivenProto);
19 : }
20 :
21 : //----------------------------------------------------------------------
22 : // Implementation
23 :
24 12 : SVGGElement::SVGGElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
25 12 : : SVGGraphicsElement(aNodeInfo)
26 : {
27 12 : }
28 :
29 :
30 : //----------------------------------------------------------------------
31 : // nsIDOMNode methods
32 :
33 :
34 0 : NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGGElement)
35 :
36 :
37 : //----------------------------------------------------------------------
38 : // nsIContent methods
39 :
40 : NS_IMETHODIMP_(bool)
41 73 : SVGGElement::IsAttributeMapped(const nsIAtom* name) const
42 : {
43 : static const MappedAttributeEntry* const map[] = {
44 : sFEFloodMap,
45 : sFiltersMap,
46 : sFontSpecificationMap,
47 : sGradientStopMap,
48 : sLightingEffectsMap,
49 : sMarkersMap,
50 : sTextContentElementsMap,
51 : sViewportsMap
52 : };
53 :
54 146 : return FindAttributeDependence(name, map) ||
55 146 : SVGGraphicsElement::IsAttributeMapped(name);
56 : }
57 :
58 : } // namespace dom
59 : } // namespace mozilla
60 :
|