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 : #ifndef mozilla_dom_HTMLUnknownElement_h
7 : #define mozilla_dom_HTMLUnknownElement_h
8 :
9 : #include "mozilla/Attributes.h"
10 : #include "mozilla/EventStates.h"
11 : #include "nsGenericHTMLElement.h"
12 :
13 : namespace mozilla {
14 : namespace dom {
15 :
16 : #define NS_HTMLUNKNOWNELEMENT_IID \
17 : { 0xc09e665b, 0x3876, 0x40dd, \
18 : { 0x85, 0x28, 0x44, 0xc2, 0x3f, 0xd4, 0x58, 0xf2 } }
19 :
20 : class HTMLUnknownElement final : public nsGenericHTMLElement
21 : {
22 : public:
23 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_HTMLUNKNOWNELEMENT_IID)
24 :
25 : NS_DECL_ISUPPORTS_INHERITED
26 :
27 0 : explicit HTMLUnknownElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
28 0 : : nsGenericHTMLElement(aNodeInfo)
29 : {
30 0 : if (NodeInfo()->Equals(nsGkAtoms::bdi)) {
31 0 : AddStatesSilently(NS_EVENT_STATE_DIR_ATTR_LIKE_AUTO);
32 : }
33 0 : }
34 :
35 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
36 : bool aPreallocateChildren) const override;
37 :
38 : protected:
39 0 : virtual ~HTMLUnknownElement() {}
40 : virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
41 : };
42 :
43 : NS_DEFINE_STATIC_IID_ACCESSOR(HTMLUnknownElement, NS_HTMLUNKNOWNELEMENT_IID)
44 :
45 : } // namespace dom
46 : } // namespace mozilla
47 :
48 : #endif /* mozilla_dom_HTMLUnknownElement_h */
|