Line data Source code
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/. */
6 :
7 : #ifndef mozilla_dom_HTMLTemplateElement_h
8 : #define mozilla_dom_HTMLTemplateElement_h
9 :
10 : #include "mozilla/Attributes.h"
11 : #include "nsIDOMHTMLElement.h"
12 : #include "nsGenericHTMLElement.h"
13 : #include "mozilla/dom/DocumentFragment.h"
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 : class HTMLTemplateElement final : public nsGenericHTMLElement
19 : {
20 : public:
21 : explicit HTMLTemplateElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
22 :
23 : // nsISupports
24 : NS_DECL_ISUPPORTS_INHERITED
25 :
26 0 : NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(HTMLTemplateElement,
27 : nsGenericHTMLElement)
28 :
29 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
30 : bool aPreallocateChildren) const override;
31 :
32 0 : DocumentFragment* Content()
33 : {
34 0 : return mContent;
35 : }
36 :
37 : protected:
38 : virtual ~HTMLTemplateElement();
39 :
40 : virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
41 :
42 : RefPtr<DocumentFragment> mContent;
43 : };
44 :
45 : } // namespace dom
46 : } // namespace mozilla
47 :
48 : #endif // mozilla_dom_HTMLTemplateElement_h
49 :
|