OLD | NEW |
1 Tests the RTCPeerConnection stats interface. | 1 Tests the RTCPeerConnection stats interface. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS pc = new webkitRTCPeerConnection(null) did not throw exception. | 6 PASS pc = new webkitRTCPeerConnection(null) did not throw exception. |
7 PASS pc.getStats(statsHandler1) did not throw exception. | 7 PASS pc.getStats(statsHandler1) did not throw exception. |
8 PASS statsHandler1 was called | 8 PASS statsHandler1 was called |
9 PASS status is non-null. | 9 PASS status is non-null. |
10 PASS result.length is 0 | 10 PASS result.length is 0 |
(...skipping 15 matching lines...) Expand all Loading... |
26 PASS statsHandler3 was called | 26 PASS statsHandler3 was called |
27 PASS result.length is >= 2 | 27 PASS result.length is >= 2 |
28 PASS timediff is >= 0 | 28 PASS timediff is >= 0 |
29 PASS res.id is non-null. | 29 PASS res.id is non-null. |
30 PASS res.type is non-null. | 30 PASS res.type is non-null. |
31 PASS res.names().length is >= 1 | 31 PASS res.names().length is >= 1 |
32 PASS res.names().indexOf("type") is >= 0 | 32 PASS res.names().indexOf("type") is >= 0 |
33 PASS res.stat("type") is "audio" | 33 PASS res.stat("type") is "audio" |
34 PASS status_g.namedItem(res.id) is non-null. | 34 PASS status_g.namedItem(res.id) is non-null. |
35 PASS status_g[res.id] is non-null. | 35 PASS status_g[res.id] is non-null. |
| 36 PASS pc.getStats(statsHandler4, 42) did not throw exception. |
| 37 PASS statsHandler4 was called |
| 38 PASS result.length is >= 2 |
| 39 PASS timediff is >= 0 |
| 40 PASS res.id is non-null. |
| 41 PASS res.type is non-null. |
| 42 PASS res.names().length is >= 1 |
| 43 PASS res.names().indexOf("type") is >= 0 |
| 44 PASS res.stat("type") is "audio" |
| 45 PASS status_g.namedItem(res.id) is non-null. |
| 46 PASS status_g[res.id] is non-null. |
36 PASS successfullyParsed is true | 47 PASS successfullyParsed is true |
37 | 48 |
38 TEST COMPLETE | 49 TEST COMPLETE |
39 | 50 |
OLD | NEW |