| Index: LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
|
| diff --git a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
|
| index fc47ab66992c8075db87f39948d3997a1f28b491..ef6b624d0b1528d2c6d4f55f5b01bec75cba6122 100644
|
| --- a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
|
| +++ b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
|
| @@ -110,14 +110,14 @@ request = objectStore.add({foo: i});
|
| request = objectStore.add({foo: i});
|
| request = objectStore.add({foo: i});
|
| PASS db.objectStoreNames.length is 1
|
| -PASS db.objectStoreNames.item(0) is objectStoreName
|
| +PASS db.objectStoreNames[0] is objectStoreName
|
| db.close()
|
| request = indexedDB.open(dbname, 2)
|
| db.deleteObjectStore(objectStore.name);
|
| PASS db.objectStoreNames.length is 0
|
| objectStore = db.createObjectStore(objectStoreName, { keyPath: 'foo' });
|
| PASS db.objectStoreNames.length is 1
|
| -PASS db.objectStoreNames.item(0) is objectStoreName
|
| +PASS db.objectStoreNames[0] is objectStoreName
|
| request = objectStore.openCursor();
|
| PASS event.target.result is null
|
| db.deleteObjectStore(objectStore.name);
|
|
|