2013-02-07 00:08:57 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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_HTMLMapElement_h
|
|
|
|
#define mozilla_dom_HTMLMapElement_h
|
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-02-07 00:08:57 -08:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsIDOMHTMLMapElement.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2013-02-07 00:08:57 -08:00
|
|
|
#include "nsGkAtoms.h"
|
2013-02-07 00:08:57 -08:00
|
|
|
|
|
|
|
class nsContentList;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class HTMLMapElement final : public nsGenericHTMLElement,
|
2015-03-27 11:52:19 -07:00
|
|
|
public nsIDOMHTMLMapElement
|
2013-02-07 00:08:57 -08:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 17:49:25 -07:00
|
|
|
explicit HTMLMapElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-02-07 00:08:57 -08:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMHTMLMapElement
|
|
|
|
NS_DECL_NSIDOMHTMLMAPELEMENT
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-02-07 00:08:57 -08:00
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED_NO_UNLINK(HTMLMapElement,
|
|
|
|
nsGenericHTMLElement)
|
|
|
|
|
2013-02-07 00:08:57 -08:00
|
|
|
// XPCOM GetName is fine.
|
|
|
|
void SetName(const nsAString& aName, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::name, aName, aError);
|
|
|
|
}
|
|
|
|
nsIHTMLCollection* Areas();
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-02-07 00:08:57 -08:00
|
|
|
|
2013-02-07 00:08:57 -08:00
|
|
|
protected:
|
2014-07-08 14:23:16 -07:00
|
|
|
~HTMLMapElement() {}
|
|
|
|
|
2013-02-07 00:08:57 -08:00
|
|
|
nsRefPtr<nsContentList> mAreas;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLMapElement_h
|