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

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

Issue 337343002: IDL: make optional arguments (without default) explicit sometimes Base URL: https://chromium.googlesource.com/chromium/blink.git@idl-default-arguments-next
Patch Set: Created 6 years, 4 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
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(); 10 removeVendorPrefixes();
11 setDBNameFromPath(); 11 setDBNameFromPath();
12 12
13 request = evalAndLog("indexedDB.deleteDatabase(dbname)"); 13 request = evalAndLog("indexedDB.deleteDatabase(dbname)");
14 request.onsuccess = deleteSuccess; 14 request.onsuccess = deleteSuccess;
15 request.onerror = unexpectedErrorCallback; 15 request.onerror = unexpectedErrorCallback;
16 } 16 }
17 17
18 function deleteSuccess(evt) { 18 function deleteSuccess(evt) {
19 preamble(); 19 preamble();
20 evalAndExpectExceptionClass("indexedDB.open(dbname, 'stringversion')", "Type Error"); 20 evalAndExpectExceptionClass("indexedDB.open(dbname, 'stringversion')", "Type Error");
21 evalAndExpectExceptionClass("indexedDB.open(dbname, 0)", "TypeError"); 21 evalAndExpectExceptionClass("indexedDB.open(dbname, 0)", "TypeError");
22 evalAndExpectExceptionClass("indexedDB.open(dbname, -5)", "TypeError"); 22 evalAndExpectExceptionClass("indexedDB.open(dbname, -5)", "TypeError");
23 evalAndExpectExceptionClass("indexedDB.open(dbname, Infinity)", "TypeError") ; 23 evalAndExpectExceptionClass("indexedDB.open(dbname, Infinity)", "TypeError") ;
24 evalAndExpectExceptionClass("indexedDB.open(dbname, -Infinity)", "TypeError" ); 24 evalAndExpectExceptionClass("indexedDB.open(dbname, -Infinity)", "TypeError" );
25 evalAndExpectExceptionClass("indexedDB.open(dbname, NaN)", "TypeError"); 25 evalAndExpectExceptionClass("indexedDB.open(dbname, NaN)", "TypeError");
26 evalAndExpectExceptionClass("indexedDB.open(dbname, -1)", "TypeError"); 26 evalAndExpectExceptionClass("indexedDB.open(dbname, -1)", "TypeError");
27 evalAndExpectExceptionClass("indexedDB.open(dbname, 0x20000000000000)", "Typ eError"); 27 evalAndExpectExceptionClass("indexedDB.open(dbname, 0x20000000000000)", "Typ eError");
28 evalAndExpectExceptionClass("indexedDB.open(dbname, null)", "TypeError"); 28 evalAndExpectExceptionClass("indexedDB.open(dbname, null)", "TypeError");
29 evalAndExpectExceptionClass("indexedDB.open(dbname, undefined)", "TypeError" );
30 finishJSTest(); 29 finishJSTest();
31 } 30 }
32 31
33 test(); 32 test();
OLDNEW
« no previous file with comments | « LayoutTests/storage/indexeddb/intversion-bad-parameters-expected.txt ('k') | Source/bindings/IDLExtendedAttributes.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698