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: */
|
2012-12-28 06:45: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_HTMLTableCellElement_h
|
|
|
|
#define mozilla_dom_HTMLTableCellElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-12-28 06:45:57 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2013-07-31 07:32:35 +04:00
|
|
|
|
2012-12-28 06:45:57 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class HTMLTableElement;
|
|
|
|
|
2017-08-14 19:31:47 +03:00
|
|
|
class HTMLTableCellElement final : public nsGenericHTMLElement
|
2012-12-28 06:45:57 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLTableCellElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2012-12-28 06:45:57 +04:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
{
|
2013-12-17 17:58:32 +04:00
|
|
|
SetHasWeirdParserInsertionMode();
|
2012-12-28 06:45:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2012-12-29 18:07:56 +04:00
|
|
|
uint32_t ColSpan() const
|
|
|
|
{
|
|
|
|
return GetIntAttr(nsGkAtoms::colspan, 1);
|
|
|
|
}
|
|
|
|
void SetColSpan(uint32_t aColSpan, ErrorResult& aError)
|
|
|
|
{
|
2017-05-18 00:24:34 +03:00
|
|
|
SetUnsignedIntAttr(nsGkAtoms::colspan, aColSpan, 1, aError);
|
2012-12-29 18:07:56 +04:00
|
|
|
}
|
|
|
|
uint32_t RowSpan() const
|
|
|
|
{
|
|
|
|
return GetIntAttr(nsGkAtoms::rowspan, 1);
|
|
|
|
}
|
|
|
|
void SetRowSpan(uint32_t aRowSpan, ErrorResult& aError)
|
|
|
|
{
|
2017-05-18 00:24:34 +03:00
|
|
|
SetUnsignedIntAttr(nsGkAtoms::rowspan, aRowSpan, 1, aError);
|
2012-12-29 18:07:56 +04:00
|
|
|
}
|
2016-02-12 01:50:42 +03:00
|
|
|
//already_AddRefed<nsDOMTokenList> Headers() const;
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetHeaders(DOMString& aHeaders)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::headers, aHeaders);
|
|
|
|
}
|
|
|
|
void SetHeaders(const nsAString& aHeaders, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::headers, aHeaders, aError);
|
|
|
|
}
|
|
|
|
int32_t CellIndex() const;
|
|
|
|
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetAbbr(DOMString& aAbbr)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::abbr, aAbbr);
|
|
|
|
}
|
|
|
|
void SetAbbr(const nsAString& aAbbr, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::abbr, aAbbr, aError);
|
|
|
|
}
|
2016-05-05 21:29:54 +03:00
|
|
|
void GetScope(DOMString& aScope);
|
2012-12-29 18:07:56 +04:00
|
|
|
void SetScope(const nsAString& aScope, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::scope, aScope, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetAlign(DOMString& aAlign);
|
2012-12-29 18:07:56 +04:00
|
|
|
void SetAlign(const nsAString& aAlign, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::align, aAlign, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetAxis(DOMString& aAxis)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::axis, aAxis);
|
|
|
|
}
|
|
|
|
void SetAxis(const nsAString& aAxis, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::axis, aAxis, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetHeight(DOMString& aHeight)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::height, aHeight);
|
|
|
|
}
|
|
|
|
void SetHeight(const nsAString& aHeight, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::height, aHeight, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetWidth(DOMString& aWidth)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::width, aWidth);
|
|
|
|
}
|
|
|
|
void SetWidth(const nsAString& aWidth, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::width, aWidth, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetCh(DOMString& aCh)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::_char, aCh);
|
|
|
|
}
|
|
|
|
void SetCh(const nsAString& aCh, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::_char, aCh, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetChOff(DOMString& aChOff)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::charoff, aChOff);
|
|
|
|
}
|
|
|
|
void SetChOff(const nsAString& aChOff, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::charoff, aChOff, aError);
|
|
|
|
}
|
|
|
|
bool NoWrap()
|
|
|
|
{
|
|
|
|
return GetBoolAttr(nsGkAtoms::nowrap);
|
|
|
|
}
|
|
|
|
void SetNoWrap(bool aNoWrap, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::nowrap, aNoWrap, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetVAlign(DOMString& aVAlign)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::valign, aVAlign);
|
|
|
|
}
|
|
|
|
void SetVAlign(const nsAString& aVAlign, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::valign, aVAlign, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetBgColor(DOMString& aBgColor)
|
2012-12-29 18:07:56 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::bgcolor, aBgColor);
|
|
|
|
}
|
|
|
|
void SetBgColor(const nsAString& aBgColor, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::bgcolor, aBgColor, aError);
|
|
|
|
}
|
|
|
|
|
2012-12-28 06:45:57 +04:00
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2012-12-28 06:45:57 +04:00
|
|
|
const nsAString& aValue,
|
2017-11-02 06:35:52 +03:00
|
|
|
nsIPrincipal* aMaybeScriptedPrincipal,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAttrValue& aResult) override;
|
|
|
|
virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const override;
|
|
|
|
NS_IMETHOD WalkContentStyleRules(nsRuleWalker* aRuleWalker) override;
|
2017-10-03 01:05:19 +03:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
|
2017-03-26 23:53:34 +03:00
|
|
|
// Get mapped attributes of ancestor table, if any
|
|
|
|
nsMappedAttributes* GetMappedAttributesInheritedFromTable() const;
|
2012-12-28 06:45:57 +04:00
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2012-12-28 06:45:57 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLTableCellElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-29 18:07:56 +04:00
|
|
|
|
2012-12-28 06:45:57 +04:00
|
|
|
HTMLTableElement* GetTable() const;
|
|
|
|
|
2012-12-29 18:07:56 +04:00
|
|
|
HTMLTableRowElement* GetRow() const;
|
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);
|
2012-12-28 06:45:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_HTMLTableCellElement_h */
|