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

Side by Side Diff: LayoutTests/storage/indexeddb/resources/intversion-omit-parameter.js

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 if (this.importScripts) { 1 if (this.importScripts) {
2 importScripts('../../../fast/js/resources/js-test-pre.js'); 2 importScripts('../../../resources/js-test.js');
3 importScripts('shared.js'); 3 importScripts('shared.js');
4 } 4 }
5 5
6 description("Test that initial version after a successful open of a non-existent db is 1"); 6 description("Test that initial version after a successful open of a non-existent db is 1");
7 7
8 function test() 8 function test()
9 { 9 {
10 removeVendorPrefixes(); 10 removeVendorPrefixes();
11 setDBNameFromPath(); 11 setDBNameFromPath();
12 12
(...skipping 17 matching lines...) Expand all
30 event = evt; 30 event = evt;
31 debug(""); 31 debug("");
32 debug("openSuccess():"); 32 debug("openSuccess():");
33 db = evalAndLog("db = event.target.result"); 33 db = evalAndLog("db = event.target.result");
34 debug("Test line from IDBFactory.open: If no version is specified and no dat abase exists, set database version to 1."); 34 debug("Test line from IDBFactory.open: If no version is specified and no dat abase exists, set database version to 1.");
35 shouldBe('db.version', '1'); 35 shouldBe('db.version', '1');
36 finishJSTest(); 36 finishJSTest();
37 } 37 }
38 38
39 test(); 39 test();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698