| Index: LayoutTests/storage/indexeddb/keypath-arrays-expected.txt
|
| diff --git a/LayoutTests/storage/indexeddb/keypath-arrays-expected.txt b/LayoutTests/storage/indexeddb/keypath-arrays-expected.txt
|
| index 30695a3656c3c42d24c4b38a5728f4cec98d1a85..3da65a7d388c82609fa61cbcc7781eb0509c36b5 100644
|
| --- a/LayoutTests/storage/indexeddb/keypath-arrays-expected.txt
|
| +++ b/LayoutTests/storage/indexeddb/keypath-arrays-expected.txt
|
| @@ -9,7 +9,9 @@ dbname = "keypath-arrays.html"
|
| indexedDB.deleteDatabase(dbname)
|
| indexedDB.open(dbname)
|
| store = db.createObjectStore('store', {keyPath: ['a', 'b']})
|
| -store.createIndex('index', ['c', 'd'])
|
| +index = store.createIndex('index', ['c', 'd'])
|
| +PASS areArraysEqual(index.keyPath, ['c', 'd']) is true
|
| +PASS index.keyPath instanceof DOMStringList is false
|
| Expecting exception from db.createObjectStore('store-with-generator', {keyPath: ['a', 'b'], autoIncrement: true})
|
| PASS Exception was thrown.
|
| PASS code is DOMException.INVALID_ACCESS_ERR
|
|
|