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

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

Issue 11280103: Splitting out the Audio library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Syncing. Created 8 years, 1 month 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 AudioElementTest; 1 library AudioElementTest;
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:audio';
4 import 'dart:html'; 5 import 'dart:html';
5 6
6 main() { 7 main() {
7 8
8 useHtmlConfiguration(); 9 useHtmlConfiguration();
9 10
10 var isAudioElement = 11 var isAudioElement =
11 predicate((x) => x is AudioElement, 'is an AudioElement'); 12 predicate((x) => x is AudioElement, 'is an AudioElement');
12 13
13 test('constructorTest1', () { 14 test('constructorTest1', () {
14 var audio = new AudioElement(); // would be new Audio() in JS 15 var audio = new AudioElement(); // would be new Audio() in JS
15 expect(audio, isNotNull); 16 expect(audio, isNotNull);
16 expect(audio, isAudioElement); 17 expect(audio, isAudioElement);
17 }); 18 });
18 19
19 test('constructorTest2', () { 20 test('constructorTest2', () {
20 var audio = new AudioElement('hahaURL'); 21 var audio = new AudioElement('hahaURL');
21 expect(audio, isNotNull); 22 expect(audio, isNotNull);
22 expect(audio, isAudioElement); 23 expect(audio, isAudioElement);
23 expect(audio.src.indexOf('hahaURL'), greaterThanOrEqualTo(0)); 24 expect(audio.src.indexOf('hahaURL'), greaterThanOrEqualTo(0));
24 }); 25 });
25 } 26 }
OLDNEW
« sdk/lib/html/scripts/systemhtml.py ('K') | « tests/html/audioelement_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698