summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/DOMStringMap.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/DOMStringMap.idl')
-rw-r--r--Source/WebCore/dom/DOMStringMap.idl8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/WebCore/dom/DOMStringMap.idl b/Source/WebCore/dom/DOMStringMap.idl
index 55db65d55..cbfa3fd5b 100644
--- a/Source/WebCore/dom/DOMStringMap.idl
+++ b/Source/WebCore/dom/DOMStringMap.idl
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2010, 2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -26,10 +26,14 @@
[
GenerateIsReachable=ImplElementRoot,
CustomDeleteProperty,
- CustomEnumerateProperty,
CustomNamedSetter,
+ OverrideBuiltins,
SkipVTableValidation,
] interface DOMStringMap {
getter DOMString (DOMString name);
+
+ // FIXME: Add support for the setter and deleter specials.
+ // [CEReactions] setter void (DOMString name, DOMString value);
+ // [CEReactions] deleter void (DOMString name);
};