Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1247)

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-state.html

Issue 2446173002: Use RTCPeerConnection instead of webkitRTCPeerConnection (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-state.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-state.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-state.html
index d7fb3f5ff8a5581f61ff57cf88a940d9cd77c3b3..5f5d7d80515557762ec45aaaefcc8797b2605961 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-state.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-state.html
@@ -9,7 +9,7 @@
<script>
async_test(function(test) {
- var pc = new webkitRTCPeerConnection({iceServers: []}, null);
+ var pc = new RTCPeerConnection();
assert_equals(pc.signalingState, 'stable');
pc.onsignalingstatechange = test.step_func(() => {
assert_equals(pc.signalingState, 'closed');

Powered by Google App Engine
This is Rietveld 408576698