Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / html / HTMLMenuElement.h
blob4ab37ce131ee3bf6aca46fde0bc3cfc8e1e03e4f
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_HTMLMenuElement_h
8 #define mozilla_dom_HTMLMenuElement_h
10 #include "mozilla/Attributes.h"
11 #include "nsGenericHTMLElement.h"
13 namespace mozilla::dom {
15 class HTMLMenuElement final : public nsGenericHTMLElement {
16 public:
17 explicit HTMLMenuElement(
18 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
20 NS_IMPL_FROMNODE_HTML_WITH_TAG(HTMLMenuElement, menu)
22 // nsISupports
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLMenuElement, nsGenericHTMLElement)
25 nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
27 // WebIDL
28 bool Compact() const { return GetBoolAttr(nsGkAtoms::compact); }
29 void SetCompact(bool aCompact, ErrorResult& aError) {
30 SetHTMLBoolAttr(nsGkAtoms::compact, aCompact, aError);
33 protected:
34 virtual ~HTMLMenuElement();
36 JSObject* WrapNode(JSContext* aCx,
37 JS::Handle<JSObject*> aGivenProto) override;
40 } // namespace mozilla::dom
42 #endif // mozilla_dom_HTMLMenuElement_h