| OLD | NEW |
| 1 library CacheTest; | 1 library CacheTest; |
| 2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
| 3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/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 ApplicationCache appCache = window.applicationCache; |
| 10 expect(cacheStatusToString(appCache.status), equals("UNCACHED")); | 10 expect(cacheStatusToString(appCache.status), equals("UNCACHED")); |
| 11 }); | 11 }); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String cacheStatusToString(int status) { | 14 String cacheStatusToString(int status) { |
| 15 switch (status) { | 15 switch (status) { |
| 16 case DOMApplicationCache.UNCACHED: // UNCACHED == 0 | 16 case ApplicationCache.UNCACHED: // UNCACHED == 0 |
| 17 return 'UNCACHED'; | 17 return 'UNCACHED'; |
| 18 case DOMApplicationCache.IDLE: // IDLE == 1 | 18 case ApplicationCache.IDLE: // IDLE == 1 |
| 19 return 'IDLE'; | 19 return 'IDLE'; |
| 20 case DOMApplicationCache.CHECKING: // CHECKING == 2 | 20 case ApplicationCache.CHECKING: // CHECKING == 2 |
| 21 return 'CHECKING'; | 21 return 'CHECKING'; |
| 22 case DOMApplicationCache.DOWNLOADING: // DOWNLOADING == 3 | 22 case ApplicationCache.DOWNLOADING: // DOWNLOADING == 3 |
| 23 return 'DOWNLOADING'; | 23 return 'DOWNLOADING'; |
| 24 case DOMApplicationCache.UPDATEREADY: // UPDATEREADY == 4 | 24 case ApplicationCache.UPDATEREADY: // UPDATEREADY == 4 |
| 25 return 'UPDATEREADY'; | 25 return 'UPDATEREADY'; |
| 26 case DOMApplicationCache.OBSOLETE: // OBSOLETE == 5 | 26 case ApplicationCache.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 } |
| OLD | NEW |