Index: Source/core/storage/Storage.cpp |
diff --git a/Source/core/storage/Storage.cpp b/Source/core/storage/Storage.cpp |
index 99557b16f10f015f17e69b297f4842746c4f1237..14c912acf89480bddb83ea73e1f717a81a59e293 100644 |
--- a/Source/core/storage/Storage.cpp |
+++ b/Source/core/storage/Storage.cpp |
@@ -79,6 +79,11 @@ bool Storage::anonymousNamedSetter(const AtomicString& name, const AtomicString& |
return true; |
} |
+bool Storage::anonymousIndexedSetter(unsigned index, const AtomicString& value, ExceptionCode& ec) |
+{ |
+ return anonymousNamedSetter(String::number(index), value, ec); |
+} |
+ |
bool Storage::anonymousNamedDeleter(const AtomicString& name, ExceptionCode& ec) |
{ |
bool found = contains(name, ec); |