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: */
|
2013-02-07 12:08:58 +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_HTMLMetaElement_h
|
|
|
|
#define mozilla_dom_HTMLMetaElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-02-07 12:08:58 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2017-08-14 19:31:47 +03:00
|
|
|
class HTMLMetaElement final : public nsGenericHTMLElement
|
2013-02-07 12:08:58 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLMetaElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-02-07 12:08:58 +04:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aCompileEventHandlers) override;
|
2013-02-07 12:08:58 +04:00
|
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aNullParent = true) override;
|
2014-07-12 15:28:48 +04:00
|
|
|
|
|
|
|
virtual nsresult AfterSetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
2017-05-19 00:09:01 +03:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
|
|
|
bool aNotify) override;
|
2014-07-12 15:28:48 +04:00
|
|
|
|
2013-02-07 12:08:58 +04:00
|
|
|
void CreateAndDispatchEvent(nsIDocument* aDoc, const nsAString& aEventName);
|
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2013-02-07 12:08:58 +04:00
|
|
|
|
2017-08-14 19:31:47 +03:00
|
|
|
void GetName(nsAString& aValue)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::name, aValue);
|
|
|
|
}
|
2013-02-07 12:08:58 +04:00
|
|
|
void SetName(const nsAString& aName, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::name, aName, aRv);
|
|
|
|
}
|
2017-08-14 19:31:47 +03:00
|
|
|
void GetHttpEquiv(nsAString& aValue)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::httpEquiv, aValue);
|
|
|
|
}
|
2013-02-07 12:08:58 +04:00
|
|
|
void SetHttpEquiv(const nsAString& aHttpEquiv, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::httpEquiv, aHttpEquiv, aRv);
|
|
|
|
}
|
2017-08-14 19:31:47 +03:00
|
|
|
nsresult GetContent(nsAString& aValue)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::content, aValue);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-02-07 12:08:58 +04:00
|
|
|
void SetContent(const nsAString& aContent, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::content, aContent, aRv);
|
|
|
|
}
|
2017-08-14 19:31:47 +03:00
|
|
|
void GetScheme(nsAString& aValue)
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::scheme, aValue);
|
|
|
|
}
|
2013-02-07 12:08:58 +04:00
|
|
|
void SetScheme(const nsAString& aScheme, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::scheme, aScheme, aRv);
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-02-07 12:08:58 +04:00
|
|
|
|
2013-02-07 12:08:58 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLMetaElement();
|
|
|
|
|
2015-06-20 03:42:49 +03:00
|
|
|
private:
|
|
|
|
nsresult SetMetaReferrer(nsIDocument* aDocument);
|
2013-02-07 12:08:58 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLMetaElement_h
|