Bug 1494333 - index crons just like artifacts r=Callek
[gecko.git] / dom / html / HTMLSharedListElement.h
blob1a5075b64cdef59304cddf23fd1c2ef4fc36076a
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 #ifndef mozilla_dom_HTMLSharedListElement_h
8 #define mozilla_dom_HTMLSharedListElement_h
10 #include "mozilla/Attributes.h"
12 #include "nsGenericHTMLElement.h"
14 namespace mozilla {
15 namespace dom {
17 class HTMLSharedListElement final : public nsGenericHTMLElement
19 public:
20 explicit HTMLSharedListElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
21 : nsGenericHTMLElement(std::move(aNodeInfo))
25 // nsISupports
26 NS_DECL_ISUPPORTS_INHERITED
28 virtual bool ParseAttribute(int32_t aNamespaceID,
29 nsAtom* aAttribute,
30 const nsAString& aValue,
31 nsIPrincipal* aMaybeScriptedPrincipal,
32 nsAttrValue& aResult) override;
33 virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const override;
34 NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
35 virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
37 bool Reversed() const
39 return GetBoolAttr(nsGkAtoms::reversed);
41 void SetReversed(bool aReversed, mozilla::ErrorResult& rv)
43 SetHTMLBoolAttr(nsGkAtoms::reversed, aReversed, rv);
45 int32_t Start() const
47 return GetIntAttr(nsGkAtoms::start, 1);
49 void SetStart(int32_t aStart, mozilla::ErrorResult& rv)
51 SetHTMLIntAttr(nsGkAtoms::start, aStart, rv);
53 void GetType(DOMString& aType)
55 GetHTMLAttr(nsGkAtoms::type, aType);
57 void SetType(const nsAString& aType, mozilla::ErrorResult& rv)
59 SetHTMLAttr(nsGkAtoms::type, aType, rv);
61 bool Compact() const
63 return GetBoolAttr(nsGkAtoms::compact);
65 void SetCompact(bool aCompact, mozilla::ErrorResult& rv)
67 SetHTMLBoolAttr(nsGkAtoms::compact, aCompact, rv);
70 protected:
71 virtual ~HTMLSharedListElement();
73 virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
75 private:
76 static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
77 MappedDeclarations&);
80 } // namespace dom
81 } // namespace mozilla
83 #endif // mozilla_dom_HTMLSharedListElement_h