1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsDOMStringMap_h
8 #define nsDOMStringMap_h
10 #include "nsCycleCollectionParticipant.h"
11 #include "nsStubMutationObserver.h"
14 #include "nsWrapperCache.h"
15 #include "js/friend/DOMProxy.h" // JS::ExpandoAndGeneration
16 #include "js/RootingAPI.h" // JS::Handle
18 // XXX Avoid including this here by moving function bodies to the cpp file
19 #include "mozilla/dom/Element.h"
27 } // namespace mozilla
29 class nsDOMStringMap
: public nsStubMutationObserver
, public nsWrapperCache
{
31 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
32 NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(nsDOMStringMap
)
34 NS_DECL_NSIMUTATIONOBSERVER_ATTRIBUTECHANGED
36 nsINode
* GetParentObject() { return mElement
; }
38 mozilla::dom::DocGroup
* GetDocGroup() const;
40 explicit nsDOMStringMap(mozilla::dom::Element
* aElement
);
43 virtual JSObject
* WrapObject(JSContext
* cx
,
44 JS::Handle
<JSObject
*> aGivenProto
) override
;
45 void NamedGetter(const nsAString
& aProp
, bool& found
,
46 mozilla::dom::DOMString
& aResult
) const;
47 void NamedSetter(const nsAString
& aProp
, const nsAString
& aValue
,
48 mozilla::ErrorResult
& rv
);
49 void NamedDeleter(const nsAString
& aProp
, bool& found
);
50 void GetSupportedNames(nsTArray
<nsString
>& aNames
);
52 JS::ExpandoAndGeneration mExpandoAndGeneration
;
55 virtual ~nsDOMStringMap();
58 RefPtr
<mozilla::dom::Element
> mElement
;
59 // Flag to guard against infinite recursion.
61 static bool DataPropToAttr(const nsAString
& aProp
, nsAutoString
& aResult
);
62 static bool AttrToDataProp(const nsAString
& aAttr
, nsAutoString
& aResult
);