chromium/third_party/blink/web_tests/storage/indexeddb/deleteObjectStore-null-name-expected.txt

Test IndexedDB deleteObjectStore required argument

On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".

dbname = "deleteObjectStore-null-name.html"
indexedDB.deleteDatabase(dbname)
indexedDB.open(dbname)
db.createObjectStore('null');
db.deleteObjectStore(null);
PASS successfullyParsed is true

TEST COMPLETE