dom/media/tests/crashtests/791278.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <!DOCTYPE HTML>
     2 <html>
     3 <!--
     4 https://bugzilla.mozilla.org/show_bug.cgi?id=791278
     5 -->
     6 <head>
     7   <meta charset="utf-8">
     8   <title>Simple PeerConnection Video Test - Invalid callback</title>
     9   <script type="application/javascript">
    10     var pc1 = new mozRTCPeerConnection();
    11     pc1.setLocalDescription(function() {});
    13     var pc2 = new mozRTCPeerConnection();
    14     pc2.setRemoteDescription(function() {});
    15   </script>
    16 </head>
    18 <body>
    19 </body>
    20 </html>

mercurial