Title: [159183] trunk/LayoutTests
Revision
159183
Author
[email protected]
Date
2013-11-13 03:25:43 -0800 (Wed, 13 Nov 2013)

Log Message

Removing fast/mediastream/constructors.html LayoutTest
https://bugs.webkit.org/show_bug.cgi?id=124259

Patch by Thiago de Barros Lacerda <[email protected]> on 2013-11-13
Reviewed by Philippe Normand.

Apart from being wrong, it was testing the mediastream WebRTC objects constructors, which are already being
tested in each particular mediastream WebRTC object LayoutTest.

* fast/mediastream/constructors-expected.txt: Removed.
* fast/mediastream/constructors.html: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (159182 => 159183)


--- trunk/LayoutTests/ChangeLog	2013-11-13 11:07:57 UTC (rev 159182)
+++ trunk/LayoutTests/ChangeLog	2013-11-13 11:25:43 UTC (rev 159183)
@@ -1,3 +1,16 @@
+2013-11-13  Thiago de Barros Lacerda  <[email protected]>
+
+        Removing fast/mediastream/constructors.html LayoutTest
+        https://bugs.webkit.org/show_bug.cgi?id=124259
+
+        Reviewed by Philippe Normand.
+
+        Apart from being wrong, it was testing the mediastream WebRTC objects constructors, which are already being
+        tested in each particular mediastream WebRTC object LayoutTest.
+
+        * fast/mediastream/constructors-expected.txt: Removed.
+        * fast/mediastream/constructors.html: Removed.
+
 2013-11-13  Alexey Proskuryakov  <[email protected]>
 
         Implement key generation and JWK import for RSASSA-PKCS1-v1_5

Deleted: trunk/LayoutTests/fast/mediastream/constructors-expected.txt (159182 => 159183)


--- trunk/LayoutTests/fast/mediastream/constructors-expected.txt	2013-11-13 11:07:57 UTC (rev 159182)
+++ trunk/LayoutTests/fast/mediastream/constructors-expected.txt	2013-11-13 11:25:43 UTC (rev 159183)
@@ -1,18 +0,0 @@
-Tests the JSEP PeerConnection related constructors.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS typeof webkitRTCPeerConnection === 'function' is true
-PASS typeof RTCSessionDescription === 'function' is true
-PASS typeof RTCIceCandidate === 'function' is true
-PASS webkitRTCPeerConnection() threw exception TypeError: DOM object constructor cannot be called as a function..
-PASS RTCSessionDescription() threw exception TypeError: DOM object constructor cannot be called as a function..
-PASS RTCIceCandidate() threw exception TypeError: DOM object constructor cannot be called as a function..
-PASS new webkitRTCPeerConnection({iceServers:[{url:'stun://foobar.com:12345'}]}, null); did not throw exception.
-PASS new RTCSessionDescription({type:'offer',sdp:'foobar'}); did not throw exception.
-PASS new RTCIceCandidate({candidate:'foo'}); did not throw exception.
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Deleted: trunk/LayoutTests/fast/mediastream/constructors.html (159182 => 159183)


--- trunk/LayoutTests/fast/mediastream/constructors.html	2013-11-13 11:07:57 UTC (rev 159182)
+++ trunk/LayoutTests/fast/mediastream/constructors.html	2013-11-13 11:25:43 UTC (rev 159183)
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-    <head>
-        <script src=""
-    </head>
-    <body>
-        <p id="description"></p>
-        <div id="console"></div>
-        <script>
-            description("Tests the JSEP PeerConnection related constructors.");
-
-            shouldBeTrue("typeof webkitRTCPeerConnection === 'function'");
-            shouldBeTrue("typeof RTCSessionDescription === 'function'");
-            shouldBeTrue("typeof RTCIceCandidate === 'function'");
-
-            shouldThrow("webkitRTCPeerConnection()");
-            shouldThrow("RTCSessionDescription()");
-            shouldThrow("RTCIceCandidate()");
-
-            shouldNotThrow("new webkitRTCPeerConnection({iceServers:[{url:'stun://foobar.com:12345'}]}, null);");
-            shouldNotThrow("new RTCSessionDescription({type:'offer',sdp:'foobar'});");
-            shouldNotThrow("new RTCIceCandidate({candidate:'foo'});");
-
-            window.jsTestIsAsync = false;
-        </script>
-        <script src=""
-    </body>
-</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to