| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "bindings/v8/IDBBindingUtilities.h" | 27 #include "bindings/v8/IDBBindingUtilities.h" |
| 28 | 28 |
| 29 #include "bindings/v8/V8Binding.h" | 29 #include "bindings/v8/V8Binding.h" |
| 30 #include "bindings/v8/V8PerIsolateData.h" | 30 #include "bindings/v8/V8PerIsolateData.h" |
| 31 #include "bindings/v8/V8Utilities.h" | |
| 32 #include "modules/indexeddb/IDBKey.h" | 31 #include "modules/indexeddb/IDBKey.h" |
| 33 #include "modules/indexeddb/IDBKeyPath.h" | 32 #include "modules/indexeddb/IDBKeyPath.h" |
| 34 | 33 |
| 35 #include <gtest/gtest.h> | 34 #include <gtest/gtest.h> |
| 36 | 35 |
| 37 using namespace WebCore; | 36 using namespace WebCore; |
| 38 | 37 |
| 39 namespace { | 38 namespace { |
| 40 | 39 |
| 41 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value,
const String& keyPath) | 40 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value,
const String& keyPath) |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); | 167 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); |
| 169 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); | 168 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); |
| 170 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b
az"); | 169 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b
az"); |
| 171 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar")
; | 170 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar")
; |
| 172 | 171 |
| 173 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"
); | 172 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"
); |
| 174 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); | 173 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); |
| 175 } | 174 } |
| 176 | 175 |
| 177 } // namespace | 176 } // namespace |
| OLD | NEW |