| Index: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
|
| index 64fb888b6caba2ff92a4db73be5f615c0f67c4ab..ec9ec92069016cedd7ed05571c974c421ae2d27a 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
|
| @@ -36,7 +36,7 @@ function createOfferWithoutDescriptionFailed()
|
|
|
| function testExecutionOrderClosedConnection()
|
| {
|
| - var localPeerConnection = new webkitRTCPeerConnection(null, null);
|
| + var localPeerConnection = new RTCPeerConnection();
|
| localPeerConnection.close();
|
| var counter = 0;
|
| window.events = [];
|
| @@ -54,7 +54,7 @@ function testExecutionOrderClosedConnection()
|
| }
|
|
|
| shouldNotThrow('testExecutionOrderClosedConnection()');
|
| -pc = new webkitRTCPeerConnection(null, null);
|
| +pc = new RTCPeerConnection();
|
| pc.createOffer(unexpectedCallback, createOfferWithoutDescriptionFailed);
|
|
|
| window.jsTestIsAsync = true;
|
|
|