X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=LayoutTests%2Fstorage%2Findexeddb%2Fdatabase-basics.html;h=b070de0d8d70d579df78f646a40b7f5564562e1b;hb=4576aa36e9a9671459299c7963ac95aa94beaea9;hp=31c887b4cf190290f5656ec1fa65810936f0c931;hpb=55323ac613cc31553107b68603cb627264d22bb0;p=android-x86%2Fexternal-webkit.git diff --git a/LayoutTests/storage/indexeddb/database-basics.html b/LayoutTests/storage/indexeddb/database-basics.html index 31c887b4c..b070de0d8 100644 --- a/LayoutTests/storage/indexeddb/database-basics.html +++ b/LayoutTests/storage/indexeddb/database-basics.html @@ -16,7 +16,7 @@ if (window.layoutTestController) function test() { - result = evalAndLog("webkitIndexedDB.open('name', 'description')"); + result = evalAndLog("webkitIndexedDB.open('name')"); verifyResult(result); result.onsuccess = openSuccess; result.onerror = unexpectedErrorCallback; @@ -68,11 +68,11 @@ function createObjectStore() verifySuccessEvent(event); shouldBeEqualToString("db.version", "version b"); shouldBeEqualToString("db.name", "name"); - shouldBe("db.objectStores", "[]"); - shouldBe("db.objectStores.length", "0"); - shouldBe("db.objectStores.contains('')", "false"); - shouldBeNull("db.objectStores[0]"); - shouldBeNull("db.objectStores.item(0)"); + shouldBe("db.objectStoreNames", "[]"); + shouldBe("db.objectStoreNames.length", "0"); + shouldBe("db.objectStoreNames.contains('')", "false"); + shouldBeNull("db.objectStoreNames[0]"); + shouldBeNull("db.objectStoreNames.item(0)"); objectStore = evalAndLog('db.createObjectStore("test123")'); checkObjectStore(); @@ -81,11 +81,11 @@ function createObjectStore() function checkObjectStore() { - shouldBe("db.objectStores", "['test123']"); - shouldBe("db.objectStores.length", "1"); - shouldBe("db.objectStores.contains('')", "false"); - shouldBe("db.objectStores.contains('test456')", "false"); - shouldBe("db.objectStores.contains('test123')", "true"); + shouldBe("db.objectStoreNames", "['test123']"); + shouldBe("db.objectStoreNames.length", "1"); + shouldBe("db.objectStoreNames.contains('')", "false"); + shouldBe("db.objectStoreNames.contains('test456')", "false"); + shouldBe("db.objectStoreNames.contains('test123')", "true"); } function commitAndContinue()