| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library url_test; | 5 library url_test; |
| 6 import '../../pkg/unittest/lib/unittest.dart'; | 6 import '../../pkg/unittest/lib/unittest.dart'; |
| 7 import '../../pkg/unittest/lib/html_config.dart'; | 7 import '../../pkg/unittest/lib/html_config.dart'; |
| 8 import 'dart:html'; | 8 import 'dart:html'; |
| 9 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 var blob = createImageBlob(); | 39 var blob = createImageBlob(); |
| 40 var url = Url.createObjectUrlFromBlob(blob); | 40 var url = Url.createObjectUrlFromBlob(blob); |
| 41 expect(url.length, greaterThan(0)); | 41 expect(url.length, greaterThan(0)); |
| 42 expect(url, startsWith('blob:')); | 42 expect(url, startsWith('blob:')); |
| 43 | 43 |
| 44 var img = new ImageElement(); | 44 var img = new ImageElement(); |
| 45 img.onLoad.listen(expectAsync((_) { | 45 img.onLoad.listen(expectAsync((_) { |
| 46 expect(img.complete, true); | 46 expect(img.complete, true); |
| 47 })); | 47 })); |
| 48 img.onError.listen((_) { | 48 img.onError.listen((_) { |
| 49 guardAsync(() { | 49 fail('URL failed to load.'); |
| 50 expect(true, isFalse, reason: 'URL failed to load.'); | |
| 51 }); | |
| 52 }); | 50 }); |
| 53 img.src = url; | 51 img.src = url; |
| 54 }); | 52 }); |
| 55 | 53 |
| 56 test('revokeObjectUrl', () { | 54 test('revokeObjectUrl', () { |
| 57 var blob = createImageBlob(); | 55 var blob = createImageBlob(); |
| 58 var url = Url.createObjectUrlFromBlob(blob); | 56 var url = Url.createObjectUrlFromBlob(blob); |
| 59 expect(url, startsWith('blob:')); | 57 expect(url, startsWith('blob:')); |
| 60 Url.revokeObjectUrl(url); | 58 Url.revokeObjectUrl(url); |
| 61 | 59 |
| 62 var img = new ImageElement(); | 60 var img = new ImageElement(); |
| 63 // Image should fail to load since the URL was revoked. | 61 // Image should fail to load since the URL was revoked. |
| 64 img.onError.listen(expectAsync((_) { | 62 img.onError.listen(expectAsync((_) { |
| 65 })); | 63 })); |
| 66 img.onLoad.listen((_) { | 64 img.onLoad.listen((_) { |
| 67 guardAsync(() { | 65 fail('URL should not have loaded.'); |
| 68 expect(true, isFalse, reason: 'URL should not have loaded.'); | |
| 69 }); | |
| 70 }); | 66 }); |
| 71 img.src = url; | 67 img.src = url; |
| 72 }); | 68 }); |
| 73 | 69 |
| 74 }); | 70 }); |
| 75 } | 71 } |
| OLD | NEW |