2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-11-10 23:30:15 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2013-08-01 22:24:23 +00:00
|
|
|
#ifndef mozilla_dom_HTMLUnknownElement_h
|
|
|
|
#define mozilla_dom_HTMLUnknownElement_h
|
2012-11-10 23:30:15 +00:00
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-11-10 23:30:15 +00:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
|
2012-12-21 14:06:50 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-12-02 04:20:01 +00:00
|
|
|
#define NS_HTMLUNKNOWNELEMENT_IID \
|
|
|
|
{ 0xc09e665b, 0x3876, 0x40dd, \
|
|
|
|
{ 0x85, 0x28, 0x44, 0xc2, 0x3f, 0xd4, 0x58, 0xf2 } }
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class HTMLUnknownElement final : public nsGenericHTMLElement
|
2012-11-10 23:30:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-12-02 04:20:01 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_HTMLUNKNOWNELEMENT_IID)
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit HTMLUnknownElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2012-11-10 23:30:15 +00:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
{
|
2012-11-21 10:13:57 +00:00
|
|
|
if (NodeInfo()->Equals(nsGkAtoms::bdi)) {
|
|
|
|
SetHasDirAuto();
|
|
|
|
}
|
2012-11-10 23:30:15 +00:00
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2012-11-10 23:30:15 +00:00
|
|
|
|
2012-11-22 11:09:57 +00:00
|
|
|
protected:
|
2015-12-02 04:20:01 +00:00
|
|
|
virtual ~HTMLUnknownElement() {}
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-11-10 23:30:15 +00:00
|
|
|
};
|
|
|
|
|
2015-12-02 04:20:01 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(HTMLUnknownElement, NS_HTMLUNKNOWNELEMENT_IID)
|
|
|
|
|
2012-12-21 14:06:50 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-08-01 22:24:23 +00:00
|
|
|
#endif /* mozilla_dom_HTMLUnknownElement_h */
|