Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / dom / svg / SVGStopElement.cpp
blob4c92cdbfde5a0c16d34bedeb823826d336bb5ad1
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/. */
7 #include "mozilla/dom/SVGStopElement.h"
8 #include "mozilla/dom/SVGStopElementBinding.h"
10 NS_IMPL_NS_NEW_SVG_ELEMENT(Stop)
12 namespace mozilla::dom {
14 JSObject* SVGStopElement::WrapNode(JSContext* aCx,
15 JS::Handle<JSObject*> aGivenProto) {
16 return SVGStopElement_Binding::Wrap(aCx, this, aGivenProto);
19 SVGElement::NumberInfo SVGStopElement::sNumberInfo = {nsGkAtoms::offset, 0,
20 true};
22 //----------------------------------------------------------------------
23 // Implementation
25 SVGStopElement::SVGStopElement(
26 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
27 : SVGStopElementBase(std::move(aNodeInfo)) {}
29 //----------------------------------------------------------------------
30 // nsINode methods
32 NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGStopElement)
34 //----------------------------------------------------------------------
36 already_AddRefed<DOMSVGAnimatedNumber> SVGStopElement::Offset() {
37 return mOffset.ToDOMAnimatedNumber(this);
40 //----------------------------------------------------------------------
41 // sSVGElement methods
43 SVGElement::NumberAttributesInfo SVGStopElement::GetNumberInfo() {
44 return NumberAttributesInfo(&mOffset, &sNumberInfo, 1);
47 } // namespace mozilla::dom