OLD | NEW |
| (Empty) |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
2 <html> | |
3 <head> | |
4 <script src="../../resources/js-test.js"></script> | |
5 </head> | |
6 <body> | |
7 <script> | |
8 description("Tests the RTCPeerConnection states."); | |
9 | |
10 var pc = null; | |
11 | |
12 function stateChanged() | |
13 { | |
14 testPassed("stateChanged was called"); | |
15 shouldBeEqualToString('pc.signalingState', 'closed'); | |
16 finishJSTest(); | |
17 } | |
18 | |
19 shouldNotThrow('pc = new webkitRTCPeerConnection({iceServers:[]}, null);'); | |
20 shouldBeEqualToString('pc.signalingState', 'stable'); | |
21 pc.onsignalingstatechange = stateChanged; | |
22 pc.close(); | |
23 | |
24 window.jsTestIsAsync = true; | |
25 window.successfullyParsed = true; | |
26 </script> | |
27 </body> | |
28 </html> | |
OLD | NEW |