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-21 18:06:50 +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 HTMLDataListElement_h___
|
|
|
|
#define HTMLDataListElement_h___
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-12-21 18:06:50 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsContentList.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLDataListElement final : public nsGenericHTMLElement
|
2012-12-21 18:06:50 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLDataListElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2012-12-21 18:06:50 +04:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2012-12-21 18:07:28 +04:00
|
|
|
nsContentList* Options()
|
|
|
|
{
|
|
|
|
if (!mOptions) {
|
|
|
|
mOptions = new nsContentList(this, MatchOptions, nullptr, nullptr, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2012-12-21 18:06:50 +04:00
|
|
|
|
|
|
|
// This function is used to generate the nsContentList (option elements).
|
2017-02-14 00:06:45 +03:00
|
|
|
static bool MatchOptions(Element* aElement, int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAtom, void* aData);
|
2012-12-21 18:06:50 +04:00
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(HTMLDataListElement,
|
|
|
|
nsGenericHTMLElement)
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLDataListElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-21 18:06:50 +04:00
|
|
|
|
|
|
|
// <option>'s list inside the datalist element.
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsContentList> mOptions;
|
2012-12-21 18:06:50 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* HTMLDataListElement_h___ */
|