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

Side by Side Diff: LayoutTests/storage/script-tests/storageinfo-no-callbacks.js

Issue 7054073: Merge 87772 - 2011-05-31 Kinuko Yasuda <kinuko@chromium.org> (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 6 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
« no previous file with comments | « LayoutTests/platform/win/Skipped ('k') | LayoutTests/storage/storageinfo-no-callbacks.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 description("This tests webkitStorageInfo methods do not crash when they are not given optional callbacks parameters."); 1 description("This tests webkitStorageInfo methods do not crash when they are not given optional callbacks parameters.");
2 2
3 var testFinished = false; 3 var testFinished = false;
4 var numberOfExpectedCallbacks = 0; 4 var numberOfExpectedCallbacks = 0;
5 5
6 function callback() 6 function callback()
7 { 7 {
8 testPassed("storageInfo callback called."); 8 testPassed("storageInfo callback called.");
9 --numberOfExpectedCallbacks; 9 --numberOfExpectedCallbacks;
10 checkCompleted(); 10 checkCompleted();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 callStorageInfoMethodsWithFewerParameters(10); 42 callStorageInfoMethodsWithFewerParameters(10);
43 43
44 testFinished = true; 44 testFinished = true;
45 checkCompleted(); 45 checkCompleted();
46 46
47 } else 47 } else
48 debug("This test requires window.webkitStorageInfo."); 48 debug("This test requires window.webkitStorageInfo.");
49 49
50 window.successfullyParsed = true; 50 window.successfullyParsed = true;
51 51
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/Skipped ('k') | LayoutTests/storage/storageinfo-no-callbacks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698