Changeset 202495 in webkit


Ignore:
Timestamp:
Jun 27, 2016 10:53:24 AM (8 years ago)
Author:
adam.bergkvist@ericsson.com
Message:

WebRTC: Unskip RTCPeerConnection-AddRemoveStream test
https://bugs.webkit.org/show_bug.cgi?id=159133

Reviewed by Eric Carlson.

Unskip RTCPeerConnection-AddRemoveStream test (on GTK+ port). RTCPeerConnection implements
the legacy MediaStream-based API as JS built-ins so we can run this test again.

  • fast/mediastream/RTCPeerConnection-AddRemoveStream-expected.txt:
  • fast/mediastream/RTCPeerConnection-AddRemoveStream.html:
  • platform/gtk/TestExpectations:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r202491 r202495  
     12016-06-27  Adam Bergkvist  <adam.bergkvist@ericsson.com>
     2
     3        WebRTC: Unskip RTCPeerConnection-AddRemoveStream test
     4        https://bugs.webkit.org/show_bug.cgi?id=159133
     5
     6        Reviewed by Eric Carlson.
     7
     8        Unskip RTCPeerConnection-AddRemoveStream test (on GTK+ port). RTCPeerConnection implements
     9        the legacy MediaStream-based API as JS built-ins so we can run this test again.
     10
     11        * fast/mediastream/RTCPeerConnection-AddRemoveStream-expected.txt:
     12        * fast/mediastream/RTCPeerConnection-AddRemoveStream.html:
     13        * platform/gtk/TestExpectations:
     14
    1152016-06-27  Frederic Wang  <fwang@igalia.com>
    216
  • trunk/LayoutTests/fast/mediastream/RTCPeerConnection-AddRemoveStream-expected.txt

    r164839 r202495  
    55
    66PASS Got a stream.
    7 PASS pc.addStream(null) threw exception Error: TypeMismatchError: DOM Exception 17.
     7PASS pc.addStream(null) threw exception TypeError: Argument 1 ('stream') to RTCPeerConnection.addStream must be an instance of MediaStream.
    88PASS pc.getLocalStreams().length is 0
    99PASS Got another stream.
  • trunk/LayoutTests/fast/mediastream/RTCPeerConnection-AddRemoveStream.html

    r164839 r202495  
    8585            }
    8686
     87            if (window.testRunner)
     88                testRunner.setUserMediaPermission(true);
     89            else {
     90                debug("This test can not be run without the testRunner");
     91                finishJSTest();
     92            }
     93
    8794            getUserMedia({audio:true, video:true}, gotStream1);
    8895
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r202491 r202495  
    337337webkit.org/b/79203 fast/mediastream/MediaStreamTrack.html [ Skip ]
    338338webkit.org/b/79203 fast/mediastream/MediaStreamTrack-onended.html [ Skip ]
    339 webkit.org/b/79203 fast/mediastream/RTCPeerConnection-AddRemoveStream.html [ Skip ]
    340339webkit.org/b/79203 fast/mediastream/RTCPeerConnection-createAnswer.html [ Skip ]
    341340webkit.org/b/79203 fast/mediastream/RTCPeerConnection-createOffer.html [ Skip ]
Note: See TracChangeset for help on using the changeset viewer.