Bug 1560374 - Set testharness and reftest web-platform-tests to Tier-1; r=jmaher...
[gecko.git] / dom / html / HTMLPictureElement.h
blobabd0d8e7ff872635d8a400e12a89faf0b60cd60b
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_HTMLPictureElement_h
8 #define mozilla_dom_HTMLPictureElement_h
10 #include "mozilla/Attributes.h"
11 #include "nsGenericHTMLElement.h"
13 namespace mozilla {
14 namespace dom {
16 class HTMLPictureElement final : public nsGenericHTMLElement {
17 public:
18 explicit HTMLPictureElement(
19 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
21 // nsISupports
22 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLPictureElement, nsGenericHTMLElement)
24 virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
25 virtual void RemoveChildNode(nsIContent* aKid, bool aNotify) override;
26 virtual nsresult InsertChildBefore(nsIContent* aKid, nsIContent* aBeforeThis,
27 bool aNotify) override;
29 protected:
30 virtual ~HTMLPictureElement();
32 virtual JSObject* WrapNode(JSContext* aCx,
33 JS::Handle<JSObject*> aGivenProto) override;
36 } // namespace dom
37 } // namespace mozilla
39 #endif // mozilla_dom_HTMLPictureElement_h