diff options
Diffstat (limited to 'LayoutTests/storage/indexeddb/index-basics.html')
-rw-r--r-- | LayoutTests/storage/indexeddb/index-basics.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LayoutTests/storage/indexeddb/index-basics.html b/LayoutTests/storage/indexeddb/index-basics.html index 128f364..4455785 100644 --- a/LayoutTests/storage/indexeddb/index-basics.html +++ b/LayoutTests/storage/indexeddb/index-basics.html @@ -68,10 +68,11 @@ function addData() function addMore() { - request = evalAndLog("event.target.source.add({x: 'value2', y: 'zzz2', z: 2.71}, 'key2')"); + request = evalAndLog("event.target.source.add({x: 'value2', y: 'zzz2', z: 2.71, foobar: 12}, 'key2')"); request.onsuccess = getData; request.onerror = unexpectedErrorCallback; window.indexObject4 = evalAndLog("store.createIndex('indexWhileAddIsInFlight', 'x')"); + window.indexObject5 = evalAndLog("store.createIndex('indexWithWeirdKeyPath', 'foobar')"); } function getData() |