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-11-11 03:30:15 +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/. */
|
2012-12-21 18:06:50 +04:00
|
|
|
#ifndef HTMLFontElement_h___
|
|
|
|
#define HTMLFontElement_h___
|
2012-11-11 03:30:15 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-11-11 03:30:15 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
|
2012-12-21 18:06:50 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLFontElement final : public nsGenericHTMLElement {
|
2012-11-11 03:30:15 +04:00
|
|
|
public:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit HTMLFontElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: nsGenericHTMLElement(std::move(aNodeInfo)) {}
|
2012-11-11 03:30:15 +04:00
|
|
|
|
2012-12-21 18:07:28 +04:00
|
|
|
void GetColor(DOMString& aColor) { GetHTMLAttr(nsGkAtoms::color, aColor); }
|
|
|
|
void SetColor(const nsAString& aColor, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::color, aColor, aError);
|
|
|
|
}
|
|
|
|
void GetFace(DOMString& aFace) { GetHTMLAttr(nsGkAtoms::face, aFace); }
|
|
|
|
void SetFace(const nsAString& aFace, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::face, aFace, aError);
|
|
|
|
}
|
|
|
|
void GetSize(DOMString& aSize) { GetHTMLAttr(nsGkAtoms::size, aSize); }
|
|
|
|
void SetSize(const nsAString& aSize, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::size, aSize, aError);
|
|
|
|
}
|
|
|
|
|
2012-11-11 03:30:15 +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;
|
2017-10-03 01:05:19 +03:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction()
|
|
|
|
const override;
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2012-12-21 18:07:28 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLFontElement();
|
|
|
|
|
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,
|
2018-06-22 19:48:42 +03:00
|
|
|
MappedDeclarations&);
|
2012-11-11 03:30:15 +04:00
|
|
|
};
|
|
|
|
|
2012-12-21 18:06:50 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* HTMLFontElement_h___ */
|