Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / html / HTMLSharedListElement.h
blob0b9b2e72dca9a87e4c8ce98ee92f1809eea00c79
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::dom {
16 class HTMLSharedListElement final : public nsGenericHTMLElement {
17 public:
18 explicit HTMLSharedListElement(
19 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
20 : nsGenericHTMLElement(std::move(aNodeInfo)) {}
22 // nsISupports
23 NS_DECL_ISUPPORTS_INHERITED
25 bool ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
26 const nsAString& aValue,
27 nsIPrincipal* aMaybeScriptedPrincipal,
28 nsAttrValue& aResult) override;
29 nsMapRuleToAttributesFunc GetAttributeMappingFunction() const override;
30 NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
31 nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
33 bool Reversed() const { return GetBoolAttr(nsGkAtoms::reversed); }
34 void SetReversed(bool aReversed, mozilla::ErrorResult& rv) {
35 SetHTMLBoolAttr(nsGkAtoms::reversed, aReversed, rv);
37 int32_t Start() const { return GetIntAttr(nsGkAtoms::start, 1); }
38 void SetStart(int32_t aStart, mozilla::ErrorResult& rv) {
39 SetHTMLIntAttr(nsGkAtoms::start, aStart, rv);
41 void GetType(DOMString& aType) { GetHTMLAttr(nsGkAtoms::type, aType); }
42 void SetType(const nsAString& aType, mozilla::ErrorResult& rv) {
43 SetHTMLAttr(nsGkAtoms::type, aType, rv);
45 bool Compact() const { return GetBoolAttr(nsGkAtoms::compact); }
46 void SetCompact(bool aCompact, mozilla::ErrorResult& rv) {
47 SetHTMLBoolAttr(nsGkAtoms::compact, aCompact, rv);
50 protected:
51 virtual ~HTMLSharedListElement();
53 virtual JSObject* WrapNode(JSContext* aCx,
54 JS::Handle<JSObject*> aGivenProto) override;
56 private:
57 static void MapAttributesIntoRule(MappedDeclarationsBuilder&);
58 static void MapOLAttributesIntoRule(MappedDeclarationsBuilder&);
61 } // namespace mozilla::dom
63 #endif // mozilla_dom_HTMLSharedListElement_h