| Index: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
|
| index a4ac6d18ab96498a50cf1471c4a4dde5ada0f1b0..4d967ea3a7bf6287cec919651b4ee1197d34640f 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
|
| @@ -14,7 +14,7 @@
|
| // runner.
|
|
|
| defaultError = new DOMException('TEST_ERROR', 'OperationError')
|
| - pc = new webkitRTCPeerConnection(null);
|
| + pc = new RTCPeerConnection();
|
|
|
| // Test that creating an offer with voiceActivityDetection, iceRestart,
|
| // offerToReceiveAudio and offerToReceiveVideo returns an accepted promise.
|
| @@ -69,7 +69,7 @@
|
| }, 'createOffer(1)' );
|
|
|
| // Test closed connection
|
| - closedPC = new webkitRTCPeerConnection(null);
|
| + closedPC = new RTCPeerConnection();
|
| closedPC.close();
|
| promise_test(function() {
|
| var invalidStateError = new DOMException('', 'InvalidStateError');
|
|
|