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

Side by Side Diff: tests/html/cache_test.dart

Issue 10178014: Copy lib/dom tests that use dart:html to lib/html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 #library('CacheTest'); 1 #library('CacheTest');
2 #import('../../lib/unittest/unittest.dart'); 2 #import('../../lib/unittest/unittest.dart');
3 #import('../../lib/unittest/html_config.dart'); 3 #import('../../lib/unittest/html_config.dart');
4 #import('dart:html'); 4 #import('dart:html');
5 5
6 main() { 6 main() {
7 useHtmlConfiguration(); 7 useHtmlConfiguration();
8 test('ApplicationCache', () { 8 test('ApplicationCache', () {
9 DOMApplicationCache appCache = window.applicationCache; 9 DOMApplicationCache appCache = window.applicationCache;
10 Expect.equals("UNCACHED", cacheStatusToString(appCache.status)); 10 Expect.equals("UNCACHED", cacheStatusToString(appCache.status));
(...skipping 11 matching lines...) Expand all
22 case DOMApplicationCache.DOWNLOADING: // DOWNLOADING == 3 22 case DOMApplicationCache.DOWNLOADING: // DOWNLOADING == 3
23 return 'DOWNLOADING'; 23 return 'DOWNLOADING';
24 case DOMApplicationCache.UPDATEREADY: // UPDATEREADY == 4 24 case DOMApplicationCache.UPDATEREADY: // UPDATEREADY == 4
25 return 'UPDATEREADY'; 25 return 'UPDATEREADY';
26 case DOMApplicationCache.OBSOLETE: // OBSOLETE == 5 26 case DOMApplicationCache.OBSOLETE: // OBSOLETE == 5
27 return 'OBSOLETE'; 27 return 'OBSOLETE';
28 default: 28 default:
29 return 'UNKNOWN CACHE STATUS'; 29 return 'UNKNOWN CACHE STATUS';
30 }; 30 };
31 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698