2012-12-28 02:45:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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_HTMLTableSectionElement_h
|
|
|
|
#define mozilla_dom_HTMLTableSectionElement_h
|
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-12-28 02:45:57 +00:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2013-01-31 23:11:49 +00:00
|
|
|
#include "nsContentList.h" // For ctor.
|
2012-12-28 02:45:57 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-08-07 20:23:08 +00:00
|
|
|
class HTMLTableSectionElement MOZ_FINAL : public nsGenericHTMLElement
|
2012-12-28 02:45:57 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit HTMLTableSectionElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2012-12-29 14:07:48 +00:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
{
|
2013-12-17 13:58:32 +00:00
|
|
|
SetHasWeirdParserInsertionMode();
|
2012-12-29 14:07:48 +00:00
|
|
|
}
|
2012-12-28 02:45:57 +00:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2012-12-29 14:07:48 +00:00
|
|
|
nsIHTMLCollection* Rows();
|
|
|
|
already_AddRefed<nsGenericHTMLElement>
|
|
|
|
InsertRow(int32_t aIndex, ErrorResult& aError);
|
|
|
|
void DeleteRow(int32_t aValue, ErrorResult& aError);
|
|
|
|
|
|
|
|
void GetAlign(nsString& aAlign)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::align, aAlign);
|
|
|
|
}
|
|
|
|
void SetAlign(const nsAString& aAlign, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::align, aAlign, aError);
|
|
|
|
}
|
|
|
|
void GetCh(nsString& aCh)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::_char, aCh);
|
|
|
|
}
|
|
|
|
void SetCh(const nsAString& aCh, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::_char, aCh, aError);
|
|
|
|
}
|
|
|
|
void GetChOff(nsString& aChOff)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::charoff, aChOff);
|
|
|
|
}
|
|
|
|
void SetChOff(const nsAString& aChOff, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::charoff, aChOff, aError);
|
|
|
|
}
|
|
|
|
void GetVAlign(nsString& aVAlign)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::valign, aVAlign);
|
|
|
|
}
|
|
|
|
void SetVAlign(const nsAString& aVAlign, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::valign, aVAlign, aError);
|
|
|
|
}
|
|
|
|
|
2012-12-28 02:45:57 +00:00
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2013-05-29 20:43:41 +00:00
|
|
|
nsAttrValue& aResult) MOZ_OVERRIDE;
|
|
|
|
virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const MOZ_OVERRIDE;
|
2012-12-28 02:45:57 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2012-12-28 02:45:57 +00:00
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED_NO_UNLINK(HTMLTableSectionElement,
|
|
|
|
nsGenericHTMLElement)
|
|
|
|
protected:
|
2014-07-08 21:23:16 +00:00
|
|
|
virtual ~HTMLTableSectionElement();
|
|
|
|
|
2014-04-08 22:27:17 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx) MOZ_OVERRIDE;
|
2012-12-29 14:07:48 +00:00
|
|
|
|
2012-12-28 02:45:57 +00:00
|
|
|
nsRefPtr<nsContentList> mRows;
|
2013-11-19 19:21:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
|
|
|
nsRuleData* aData);
|
2012-12-28 02:45:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_HTMLTableSectionElement_h */
|