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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-stats-expected.txt

Issue 2446173002: Use RTCPeerConnection instead of webkitRTCPeerConnection (Closed)
Patch Set: rebase Created 4 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
OLDNEW
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 RTCPeerConnection() 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
11 PASS getUserMedia({audio:true, video:true}, gotStream) did not throw exception. 11 PASS getUserMedia({audio:true, video:true}, gotStream) did not throw exception.
12 PASS Got a stream. 12 PASS Got a stream.
13 PASS pc.getStats(statsHandler2) did not throw exception. 13 PASS pc.getStats(statsHandler2) did not throw exception.
14 PASS statsHandler2 was called 14 PASS statsHandler2 was called
15 PASS result.length is >= 2 15 PASS result.length is >= 2
16 PASS timediff is >= 0 16 PASS timediff is >= 0
(...skipping 24 matching lines...) Expand all
41 PASS res.type is non-null. 41 PASS res.type is non-null.
42 PASS res.names().length is >= 1 42 PASS res.names().length is >= 1
43 PASS res.names().indexOf("type") is >= 0 43 PASS res.names().indexOf("type") is >= 0
44 PASS res.stat("type") is "audio" 44 PASS res.stat("type") is "audio"
45 PASS status_g.namedItem(res.id) is non-null. 45 PASS status_g.namedItem(res.id) is non-null.
46 PASS status_g[res.id] is non-null. 46 PASS status_g[res.id] is non-null.
47 PASS successfullyParsed is true 47 PASS successfullyParsed is true
48 48
49 TEST COMPLETE 49 TEST COMPLETE
50 50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698