| Index: Source/core/storage/Storage.cpp
|
| diff --git a/Source/core/storage/Storage.cpp b/Source/core/storage/Storage.cpp
|
| index c74c4a6d4bd2b23ae5b3abf7dc659599a1950091..f1bdb191057e161b63e800f7d162ace91267bdec 100644
|
| --- a/Source/core/storage/Storage.cpp
|
| +++ b/Source/core/storage/Storage.cpp
|
| @@ -115,4 +115,14 @@ void Storage::namedPropertyEnumerator(Vector<String>& names, ExceptionCode& ec)
|
| }
|
| }
|
|
|
| +bool Storage::namedPropertyQuery(const AtomicString& name, ExceptionCode& ec)
|
| +{
|
| + if (name == "length")
|
| + return false;
|
| + bool found = contains(name, ec);
|
| + if (ec || !found)
|
| + return false;
|
| + return true;
|
| +}
|
| +
|
| }
|
|
|