2015-05-03 22:32:37 +03: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: */
|
2013-02-07 12:08:57 +04: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_HTMLModElement_h
|
|
|
|
#define mozilla_dom_HTMLModElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-02-07 12:08:57 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2013-02-07 12:08:58 +04:00
|
|
|
#include "nsGkAtoms.h"
|
2013-02-07 12:08:57 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLModElement final : public nsGenericHTMLElement
|
2013-02-07 12:08:57 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLModElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-02-07 12:08:57 +04:00
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2013-02-07 12:08:57 +04:00
|
|
|
|
2013-02-07 12:08:58 +04:00
|
|
|
void GetCite(nsString& aCite)
|
|
|
|
{
|
|
|
|
GetHTMLURIAttr(nsGkAtoms::cite, aCite);
|
|
|
|
}
|
|
|
|
void SetCite(const nsAString& aCite, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::cite, aCite, aRv);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetDateTime(DOMString& aDateTime)
|
2013-08-02 02:24:23 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::datetime, aDateTime);
|
|
|
|
}
|
2013-02-07 12:08:58 +04:00
|
|
|
void SetDateTime(const nsAString& aDateTime, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::datetime, aDateTime, aRv);
|
|
|
|
}
|
|
|
|
|
2014-07-09 01:23:16 +04:00
|
|
|
protected:
|
|
|
|
virtual ~HTMLModElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-02-07 12:08:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLModElement_h
|