Title: [166199] trunk/LayoutTests
Revision
166199
Author
[email protected]
Date
2014-03-24 15:51:45 -0700 (Mon, 24 Mar 2014)

Log Message

Update some mediastream LayoutTests results
https://bugs.webkit.org/show_bug.cgi?id=130692

Reviewed by Eric Carlson.

Tests were not passing due to outdated expected files.

* fast/mediastream/MediaStream-MediaElement-srcObject-expected.txt:
* fast/mediastream/MediaStreamTrack-expected.txt:
* fast/mediastream/RTCPeerConnection-ice-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (166198 => 166199)


--- trunk/LayoutTests/ChangeLog	2014-03-24 22:32:27 UTC (rev 166198)
+++ trunk/LayoutTests/ChangeLog	2014-03-24 22:51:45 UTC (rev 166199)
@@ -1,3 +1,16 @@
+2014-03-24  Thiago de Barros Lacerda  <[email protected]>
+
+        Update some mediastream LayoutTests results
+        https://bugs.webkit.org/show_bug.cgi?id=130692
+
+        Reviewed by Eric Carlson.
+
+        Tests were not passing due to outdated expected files.
+
+        * fast/mediastream/MediaStream-MediaElement-srcObject-expected.txt:
+        * fast/mediastream/MediaStreamTrack-expected.txt:
+        * fast/mediastream/RTCPeerConnection-ice-expected.txt:
+
 2014-03-24  Martin Hock  <[email protected]>
 
         mathml/presentation/tokenElements-background-color.html ImageOnlyFailure after 166170

Modified: trunk/LayoutTests/fast/mediastream/MediaStream-MediaElement-srcObject-expected.txt (166198 => 166199)


--- trunk/LayoutTests/fast/mediastream/MediaStream-MediaElement-srcObject-expected.txt	2014-03-24 22:32:27 UTC (rev 166198)
+++ trunk/LayoutTests/fast/mediastream/MediaStream-MediaElement-srcObject-expected.txt	2014-03-24 22:51:45 UTC (rev 166199)
@@ -3,7 +3,7 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS navigator.webkitGetUserMedia({audio:true, video:false}, gotStream1, error); did not throw exception.
+PASS navigator.webkitGetUserMedia({audio:true, video:false}, gotStream, error); did not throw exception.
 PASS stream.getAudioTracks().length is 1
 PASS stream.getVideoTracks().length is 0
 PASS audio.srcObject = stream; did not throw exception.

Modified: trunk/LayoutTests/fast/mediastream/MediaStreamTrack-expected.txt (166198 => 166199)


--- trunk/LayoutTests/fast/mediastream/MediaStreamTrack-expected.txt	2014-03-24 22:32:27 UTC (rev 166198)
+++ trunk/LayoutTests/fast/mediastream/MediaStreamTrack-expected.txt	2014-03-24 22:51:45 UTC (rev 166199)
@@ -35,12 +35,12 @@
 checking track.states()
 PASS states.sourceId is capabilities.sourceId[0]
 PASS states.sourceType is "camera"
-  states.volume = undefined
   states.width = 1920
+  states.height = 1080
+  states.frameRate = 30
   states.aspectRatio = 1.78
-  states.height = 1080
   states.facingMode = user
-  states.frameRate = 30
+  states.volume = undefined
   states.sourceType = camera
   states.sourceId = 239c24b0-2b15-11e3-8224-0800200c9a66
 
@@ -56,12 +56,12 @@
 checking track.states()
 PASS states.sourceId is capabilities.sourceId[0]
 PASS states.sourceType is "microphone"
-  states.volume = 50
   states.width = undefined
+  states.height = undefined
+  states.frameRate = undefined
   states.aspectRatio = undefined
-  states.height = undefined
   states.facingMode = undefined
-  states.frameRate = undefined
+  states.volume = 50
   states.sourceType = microphone
   states.sourceId = 239c24b1-2b15-11e3-8224-0800200c9a66
 
@@ -95,12 +95,12 @@
 checking track.states()
 PASS states.sourceId is capabilities.sourceId[0]
 PASS states.sourceType is "camera"
-  states.volume = undefined
   states.width = 1920
+  states.height = 1080
+  states.frameRate = 30
   states.aspectRatio = 1.78
-  states.height = 1080
   states.facingMode = user
-  states.frameRate = 30
+  states.volume = undefined
   states.sourceType = camera
   states.sourceId = 239c24b0-2b15-11e3-8224-0800200c9a66
 PASS videoTrack.id is not videoTrack2.id

Modified: trunk/LayoutTests/fast/mediastream/RTCPeerConnection-ice-expected.txt (166198 => 166199)


--- trunk/LayoutTests/fast/mediastream/RTCPeerConnection-ice-expected.txt	2014-03-24 22:32:27 UTC (rev 166198)
+++ trunk/LayoutTests/fast/mediastream/RTCPeerConnection-ice-expected.txt	2014-03-24 22:51:45 UTC (rev 166199)
@@ -5,9 +5,9 @@
 
 PASS pc = new webkitRTCPeerConnection({iceServers:[{urls:'stun:foo.com'}]}); did not throw exception.
 PASS iceConnectionState is completed
-PASS pc.addIceCandidate(null, null, null); threw exception TypeError: Type error.
-PASS pc.addIceCandidate(iceCandidate, null, null); threw exception TypeError: Type error.
-PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess, null); threw exception TypeError: Type error.
+PASS pc.addIceCandidate(null, null, null); threw exception TypeError: Argument 2 ('successCallback') to RTCPeerConnection.addIceCandidate must be a function.
+PASS pc.addIceCandidate(iceCandidate, null, null); threw exception TypeError: Argument 2 ('successCallback') to RTCPeerConnection.addIceCandidate must be a function.
+PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess, null); threw exception TypeError: Argument 3 ('failureCallback') to RTCPeerConnection.addIceCandidate must be a function.
 PASS pc.addIceCandidate(iceCandidate, addIceCandidateSuccess, addIceCandidateFailure); did not throw exception.
 PASS addIceCandidateSuccess was called.
 PASS iceConnectionState is closed.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to