Title: [214535] trunk/LayoutTests
Revision
214535
Author
clo...@igalia.com
Date
2017-03-29 08:33:15 -0700 (Wed, 29 Mar 2017)

Log Message

[GTK][OWR] Rebaseline fast/mediastream/RTCPeerConnection-addIceCandidate.html after r214527
https://bugs.webkit.org/show_bug.cgi?id=170192

Unreviewed test gardening.

* platform/gtk/fast/mediastream/RTCPeerConnection-addIceCandidate-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (214534 => 214535)


--- trunk/LayoutTests/ChangeLog	2017-03-29 15:18:38 UTC (rev 214534)
+++ trunk/LayoutTests/ChangeLog	2017-03-29 15:33:15 UTC (rev 214535)
@@ -1,3 +1,12 @@
+2017-03-29  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
+        [GTK][OWR] Rebaseline fast/mediastream/RTCPeerConnection-addIceCandidate.html after r214527
+        https://bugs.webkit.org/show_bug.cgi?id=170192
+
+        Unreviewed test gardening.
+
+        * platform/gtk/fast/mediastream/RTCPeerConnection-addIceCandidate-expected.txt:
+
 2017-03-29  Youenn Fablet  <you...@apple.com>
 
         Add test for differentiating camera versus canvas stream

Modified: trunk/LayoutTests/platform/gtk/fast/mediastream/RTCPeerConnection-addIceCandidate-expected.txt (214534 => 214535)


--- trunk/LayoutTests/platform/gtk/fast/mediastream/RTCPeerConnection-addIceCandidate-expected.txt	2017-03-29 15:18:38 UTC (rev 214534)
+++ trunk/LayoutTests/platform/gtk/fast/mediastream/RTCPeerConnection-addIceCandidate-expected.txt	2017-03-29 15:33:15 UTC (rev 214535)
@@ -21,9 +21,14 @@
 PASS promise pc.addIceCandidate(new RTCIceCandidate({candidate: 'bad content', sdpMid: sdpMid})) rejected with OperationError (DOM Exception 34): Invalid candidate content
 *** Test bad candidate content with valid sdpMLineIndex
 PASS promise pc.addIceCandidate(new RTCIceCandidate({candidate: 'bad content', sdpMLineIndex: sdpMLineIndex})) rejected with OperationError (DOM Exception 34): Invalid candidate content
+*** Test valid candidate with no mid and mlineindex
+PASS promise pc.addIceCandidate({candidate: validCandidate}) rejected with TypeError: Argument 1 ('candidate') to RTCPeerConnection.addIceCandidate must be an instance of RTCIceCandidate
 
 *** Test some OK input
 PASS promise pc.addIceCandidate({candidate: validCandidate, sdpMid: sdpMid}) fulfilled with undefined
+PASS promise pc.addIceCandidate({candidate: validCandidate, sdpMLineIndex: sdpMLineIndex}) fulfilled with undefined
+PASS promise pc.addIceCandidate(undefined) fulfilled with undefined
+PASS promise pc.addIceCandidate(null) fulfilled with undefined
 PASS promise pc.addIceCandidate(new RTCIceCandidate({candidate: validCandidate, sdpMLineIndex: sdpMLineIndex})) fulfilled with undefined
 *** A valid sdpMid takes precedesce over a bad sdpMLineIndex
 PASS promise pc.addIceCandidate(new RTCIceCandidate({candidate: validCandidate, sdpMid: sdpMid, sdpMLineIndex: badSdpMLineIndex})) fulfilled with undefined
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to