Files
Emilio Cobos Álvarez 1a47f03236 Bug 2068139 - Rename IsAttributeMapped to IsNoNamespaceAttrMapped. r=dom-core-reviewers,media-playback-reviewers,padenot,smaug
Preliminary patch. xml:lang is a mapped attribute on all elements, so
this function would need to take a namespace, or something else.

For now I think we can just keep this but with a clearer name.
Remove the NS_IMETHOD gunk while at it.

Differential Revision: https://phabricator.services.mozilla.com/D322653
2026-09-02 01:02:07 +00:00

49 lines
1.8 KiB
C++

/* 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 HTMLFontElement_h_
#define HTMLFontElement_h_
#include "nsGenericHTMLElement.h"
namespace mozilla::dom {
class HTMLFontElement final : public nsGenericHTMLElement {
public:
explicit HTMLFontElement(already_AddRefed<mozilla::dom::NodeInfo> aNodeInfo)
: nsGenericHTMLElement(std::move(aNodeInfo)) {}
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);
}
bool ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
const nsAString& aValue,
nsIPrincipal* aMaybeScriptedPrincipal,
nsAttrValue& aResult) override;
bool IsNoNamespaceAttrMapped(const nsAtom* aAttribute) const override;
nsMapRuleToAttributesFunc GetAttributeMappingFunction() const override;
nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
protected:
virtual ~HTMLFontElement();
JSObject* WrapNode(JSContext*, JS::Handle<JSObject*> aGivenProto) override;
private:
static void MapAttributesIntoRule(MappedDeclarationsBuilder&);
};
} // namespace mozilla::dom
#endif /* HTMLFontElement_h_ */