Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / html / HTMLDataElement.h
blob7b5b4b12c770046042b6cff37fa0b97d51067768
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_HTMLDataElement_h
8 #define mozilla_dom_HTMLDataElement_h
10 #include "mozilla/Attributes.h"
11 #include "nsGenericHTMLElement.h"
12 #include "nsGkAtoms.h"
14 namespace mozilla::dom {
16 class HTMLDataElement final : public nsGenericHTMLElement {
17 public:
18 explicit HTMLDataElement(
19 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
21 // HTMLDataElement WebIDL
22 void GetValue(DOMString& aValue) { GetHTMLAttr(nsGkAtoms::value, aValue); }
24 void SetValue(const nsAString& aValue, ErrorResult& aError) {
25 SetHTMLAttr(nsGkAtoms::value, aValue, aError);
28 nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
30 protected:
31 virtual ~HTMLDataElement();
33 JSObject* WrapNode(JSContext* aCx,
34 JS::Handle<JSObject*> aGivenProto) override;
37 } // namespace mozilla::dom
39 #endif // mozilla_dom_HTMLDataElement_h