| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |