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

Side by Side Diff: LayoutTests/storage/indexeddb/resources/intversion-bad-parameters.js

Issue 1317593005: Indexed DB: Remove vendor prefix removal from tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 if (this.importScripts) { 1 if (this.importScripts) {
2 importScripts('../../../resources/js-test.js'); 2 importScripts('../../../resources/js-test.js');
3 importScripts('shared.js'); 3 importScripts('shared.js');
4 } 4 }
5 5
6 description("Test that bad version parameters cause TypeError"); 6 description("Test that bad version parameters cause TypeError");
7 7
8 function test() 8 function test()
9 { 9 {
10 removeVendorPrefixes();
11 setDBNameFromPath(); 10 setDBNameFromPath();
12 11
13 request = evalAndLog("indexedDB.deleteDatabase(dbname)"); 12 request = evalAndLog("indexedDB.deleteDatabase(dbname)");
14 request.onsuccess = deleteSuccess; 13 request.onsuccess = deleteSuccess;
15 request.onerror = unexpectedErrorCallback; 14 request.onerror = unexpectedErrorCallback;
16 } 15 }
17 16
18 function deleteSuccess(evt) { 17 function deleteSuccess(evt) {
19 preamble(); 18 preamble();
20 evalAndExpectExceptionClass("indexedDB.open(dbname, 'stringversion')", "Type Error"); 19 evalAndExpectExceptionClass("indexedDB.open(dbname, 'stringversion')", "Type Error");
21 evalAndExpectExceptionClass("indexedDB.open(dbname, 0)", "TypeError"); 20 evalAndExpectExceptionClass("indexedDB.open(dbname, 0)", "TypeError");
22 evalAndExpectExceptionClass("indexedDB.open(dbname, -5)", "TypeError"); 21 evalAndExpectExceptionClass("indexedDB.open(dbname, -5)", "TypeError");
23 evalAndExpectExceptionClass("indexedDB.open(dbname, Infinity)", "TypeError") ; 22 evalAndExpectExceptionClass("indexedDB.open(dbname, Infinity)", "TypeError") ;
24 evalAndExpectExceptionClass("indexedDB.open(dbname, -Infinity)", "TypeError" ); 23 evalAndExpectExceptionClass("indexedDB.open(dbname, -Infinity)", "TypeError" );
25 evalAndExpectExceptionClass("indexedDB.open(dbname, NaN)", "TypeError"); 24 evalAndExpectExceptionClass("indexedDB.open(dbname, NaN)", "TypeError");
26 evalAndExpectExceptionClass("indexedDB.open(dbname, -1)", "TypeError"); 25 evalAndExpectExceptionClass("indexedDB.open(dbname, -1)", "TypeError");
27 evalAndExpectExceptionClass("indexedDB.open(dbname, 0x20000000000000)", "Typ eError"); 26 evalAndExpectExceptionClass("indexedDB.open(dbname, 0x20000000000000)", "Typ eError");
28 evalAndExpectExceptionClass("indexedDB.open(dbname, null)", "TypeError"); 27 evalAndExpectExceptionClass("indexedDB.open(dbname, null)", "TypeError");
29 evalAndExpectExceptionClass("indexedDB.open(dbname, undefined)", "TypeError" ); 28 evalAndExpectExceptionClass("indexedDB.open(dbname, undefined)", "TypeError" );
30 finishJSTest(); 29 finishJSTest();
31 } 30 }
32 31
33 test(); 32 test();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698