Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(991)

Side by Side Diff: LayoutTests/storage/indexeddb/mozilla/resources/objectstorenames.js

Issue 966843002: Mark DOMStringList.contains() as deprecated, add console warning. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // original test: 1 // original test:
2 // http://mxr.mozilla.org/mozilla2.0/source/dom/indexedDB/test/test_global_data. html 2 // http://mxr.mozilla.org/mozilla2.0/source/dom/indexedDB/test/test_global_data. html
3 // license of original test: 3 // license of original test:
4 // " Any copyright is dedicated to the Public Domain. 4 // " Any copyright is dedicated to the Public Domain.
5 // http://creativecommons.org/publicdomain/zero/1.0/ " 5 // http://creativecommons.org/publicdomain/zero/1.0/ "
6 6
7 if (this.importScripts) { 7 if (this.importScripts) {
8 importScripts('../../../../resources/js-test.js'); 8 importScripts('../../../../resources/js-test.js');
9 importScripts('../../resources/shared.js'); 9 importScripts('../../resources/shared.js');
10 } 10 }
11 11
12 description("Test IndexedDB's objectStoreNames array"); 12 description("Test IndexedDB's objectStoreNames array");
13 13
14 indexedDBTest(prepareDatabase); 14 indexedDBTest(prepareDatabase);
15 function prepareDatabase() 15 function prepareDatabase()
16 { 16 {
17 db = event.target.result; 17 db = event.target.result;
18 event.target.transaction.onabort = unexpectedAbortCallback; 18 event.target.transaction.onabort = unexpectedAbortCallback;
19 19
20 objectStoreName = "a"; 20 objectStoreName = "a";
21 objectStore = evalAndLog("objectStore = db.createObjectStore(objectStoreName , { keyPath: 'id', autoIncrement: true });"); 21 objectStore = evalAndLog("objectStore = db.createObjectStore(objectStoreName , { keyPath: 'id', autoIncrement: true });");
22 22
23 shouldBeTrue("'objectStoreNames' in db"); 23 shouldBeTrue("'objectStoreNames' in db");
24 shouldBe("db.objectStoreNames.length", "1"); 24 shouldBe("db.objectStoreNames.length", "1");
25 shouldBe("db.objectStoreNames.item(0)", "objectStoreName"); 25 shouldBe("db.objectStoreNames[0]", "objectStoreName");
26 finishJSTest(); 26 finishJSTest();
27 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698