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-01-04 21:02:14 +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_HTMLSharedListElement_h
|
|
|
|
#define mozilla_dom_HTMLSharedListElement_h
|
2013-12-09 06:52:33 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-01-04 21:02:14 +04:00
|
|
|
|
|
|
|
#include "nsIDOMHTMLOListElement.h"
|
|
|
|
#include "nsIDOMHTMLUListElement.h"
|
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLSharedListElement final : public nsGenericHTMLElement,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsIDOMHTMLOListElement,
|
|
|
|
public nsIDOMHTMLUListElement
|
2013-01-04 21:02:14 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLSharedListElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-01-04 21:02:14 +04:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMHTMLOListElement
|
|
|
|
NS_DECL_NSIDOMHTMLOLISTELEMENT
|
|
|
|
|
|
|
|
// nsIDOMHTMLUListElement
|
|
|
|
// fully declared by NS_DECL_NSIDOMHTMLOLISTELEMENT
|
|
|
|
|
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAttrValue& aResult) override;
|
|
|
|
virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const override;
|
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2013-01-04 21:02:14 +04:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
bool Reversed() const
|
|
|
|
{
|
|
|
|
return GetBoolAttr(nsGkAtoms::reversed);
|
|
|
|
}
|
|
|
|
void SetReversed(bool aReversed, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::reversed, aReversed, rv);
|
|
|
|
}
|
|
|
|
int32_t Start() const
|
|
|
|
{
|
|
|
|
return GetIntAttr(nsGkAtoms::start, 1);
|
|
|
|
}
|
|
|
|
void SetStart(int32_t aStart, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLIntAttr(nsGkAtoms::start, aStart, rv);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetType(DOMString& aType)
|
2013-01-04 21:02:14 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::type, aType);
|
|
|
|
}
|
|
|
|
void SetType(const nsAString& aType, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::type, aType, rv);
|
|
|
|
}
|
|
|
|
bool Compact() const
|
|
|
|
{
|
|
|
|
return GetBoolAttr(nsGkAtoms::compact);
|
|
|
|
}
|
|
|
|
void SetCompact(bool aCompact, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::compact, aCompact, rv);
|
|
|
|
}
|
2013-01-07 17:34:16 +04:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLSharedListElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-11-19 23:21:29 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
2017-01-27 00:39:13 +03:00
|
|
|
GenericSpecifiedValues* aGenericData);
|
2013-01-04 21:02:14 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLSharedListElement_h
|