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_HTMLTableRowElement_h
|
|
|
|
#define mozilla_dom_HTMLTableRowElement_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-02-01 03:11:49 +04:00
|
|
|
class nsContentList;
|
2012-12-28 06:45:57 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-08-02 02:24:22 +04:00
|
|
|
class HTMLTableSectionElement;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLTableRowElement final : public nsGenericHTMLElement {
|
2012-12-28 06:45:57 +04:00
|
|
|
public:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit HTMLTableRowElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: nsGenericHTMLElement(std::move(aNodeInfo)) {
|
2013-12-17 17:58:32 +04:00
|
|
|
SetHasWeirdParserInsertionMode();
|
2012-12-29 18:07:57 +04:00
|
|
|
}
|
2012-12-28 06:45:57 +04:00
|
|
|
|
2018-03-22 00:39:04 +03:00
|
|
|
NS_IMPL_FROMNODE_HTML_WITH_TAG(HTMLTableRowElement, tr)
|
2012-12-29 18:07:56 +04:00
|
|
|
|
2012-12-28 06:45:57 +04:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2012-12-29 18:07:57 +04:00
|
|
|
int32_t RowIndex() const;
|
|
|
|
int32_t SectionRowIndex() const;
|
|
|
|
nsIHTMLCollection* Cells();
|
|
|
|
already_AddRefed<nsGenericHTMLElement> InsertCell(int32_t aIndex,
|
|
|
|
ErrorResult& aError);
|
|
|
|
void DeleteCell(int32_t aValue, ErrorResult& aError);
|
|
|
|
|
|
|
|
void GetAlign(DOMString& aAlign) { GetHTMLAttr(nsGkAtoms::align, aAlign); }
|
|
|
|
void SetAlign(const nsAString& aAlign, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::align, aAlign, aError);
|
|
|
|
}
|
|
|
|
void GetCh(DOMString& aCh) { GetHTMLAttr(nsGkAtoms::_char, aCh); }
|
|
|
|
void SetCh(const nsAString& aCh, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::_char, aCh, aError);
|
|
|
|
}
|
|
|
|
void GetChOff(DOMString& aChOff) { GetHTMLAttr(nsGkAtoms::charoff, aChOff); }
|
|
|
|
void SetChOff(const nsAString& aChOff, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::charoff, aChOff, aError);
|
|
|
|
}
|
2015-02-13 04:27:39 +03:00
|
|
|
void GetVAlign(DOMString& aVAlign) {
|
2012-12-29 18:07:57 +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:57 +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, nsAtom* aAttribute,
|
|
|
|
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;
|
2017-10-03 01:05:19 +03:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
|
2012-12-28 06:45:57 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2012-12-28 06:45:57 +04:00
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED_NO_UNLINK(HTMLTableRowElement,
|
|
|
|
nsGenericHTMLElement)
|
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLTableRowElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-29 18:07:57 +04:00
|
|
|
|
2013-08-02 02:24:22 +04:00
|
|
|
HTMLTableSectionElement* GetSection() const;
|
2012-12-29 18:07:57 +04:00
|
|
|
HTMLTableElement* GetTable() const;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsContentList> mCells;
|
2013-11-19 23:21:29 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
2018-06-22 19:48:42 +03:00
|
|
|
MappedDeclarations&);
|
2012-12-28 06:45:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_HTMLTableRowElement_h */
|