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

Side by Side Diff: LayoutTests/fast/mediastream/RTCIceCandidate.html

Issue 187673002: MediaStream API: Update RTCIceCandidate to match the Spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test Created 6 years, 9 months 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
« no previous file with comments | « no previous file | LayoutTests/fast/mediastream/RTCIceCandidate-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 description("Tests RTCIceCandidate."); 10 description("Tests RTCIceCandidate.");
11 11
12 var initializer = {candidate:"foo", sdpMid:"bar", sdpMLineIndex:6}; 12 var initializer = {candidate:"foo", sdpMid:"bar", sdpMLineIndex:6};
13 var candidate; 13 var candidate;
14 shouldNotThrow('candidate = new RTCIceCandidate(initializer);'); 14 shouldNotThrow('candidate = new RTCIceCandidate(initializer);');
15 shouldBe('candidate.candidate', '"foo"'); 15 shouldBeEqualToString('candidate.candidate', 'foo');
16 shouldBe('candidate.sdpMid', '"bar"'); 16 shouldBeEqualToString('candidate.sdpMid', 'bar');
17 shouldBe('candidate.sdpMLineIndex', '6'); 17 shouldBe('candidate.sdpMLineIndex', '6');
18 18
19 shouldNotThrow('initializer = JSON.parse(JSON.stringify(candidate));'); 19 shouldNotThrow('initializer = JSON.parse(JSON.stringify(candidate));');
20 20
21 shouldNotThrow('candidate = new RTCIceCandidate(initializer);'); 21 shouldNotThrow('candidate = new RTCIceCandidate(initializer);');
22 shouldBe('candidate.candidate', '"foo"'); 22 shouldBeEqualToString('candidate.candidate', 'foo');
23 shouldBe('candidate.sdpMid', '"bar"'); 23 shouldBeEqualToString('candidate.sdpMid', 'bar');
24 shouldBe('candidate.sdpMLineIndex', '6'); 24 shouldBe('candidate.sdpMLineIndex', '6');
25 25
26 shouldThrow('new RTCIceCandidate({});'); 26 shouldThrow('new RTCIceCandidate({});');
27 shouldThrow('new RTCIceCandidate(5);'); 27 shouldThrow('new RTCIceCandidate(5);');
28 shouldThrow('new RTCIceCandidate("foobar");'); 28 shouldThrow('new RTCIceCandidate("foobar");');
29 shouldThrow('new RTCIceCandidate({candidate:""});'); 29 shouldThrow('new RTCIceCandidate({candidate:""});');
30 30
31 shouldNotThrow('new RTCIceCandidate({candidate:"x"});'); 31 shouldNotThrow('new RTCIceCandidate({candidate:"x"});');
32 32
33 candidate = new RTCIceCandidate(initializer);
34 candidate.candidate = "bar";
35 candidate.sdpMid = "foo";
36 candidate.sdpMLineIndex = 0;
37 shouldBeEqualToString('candidate.candidate', 'bar');
38 shouldBeEqualToString('candidate.sdpMid', 'foo');
39 shouldBe('candidate.sdpMLineIndex', '0');
40
41
33 window.successfullyParsed = true; 42 window.successfullyParsed = true;
34 </script> 43 </script>
35 </body> 44 </body>
36 </html> 45 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/mediastream/RTCIceCandidate-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698