зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset fddde2d1e9b2 (bug 853858) for Windows leaks.
This commit is contained in:
Родитель
87d504af18
Коммит
0c343a580c
|
@ -15,9 +15,8 @@
|
|||
title: "Basic audio-only peer connection"
|
||||
});
|
||||
|
||||
var test;
|
||||
runTest(function () {
|
||||
test = new PeerConnectionTest();
|
||||
var test = new PeerConnectionTest();
|
||||
test.setMediaConstraints([{audio: true}], [{audio: true}]);
|
||||
test.run();
|
||||
}, true);
|
||||
|
|
|
@ -16,9 +16,8 @@
|
|||
title: "Basic audio/video (separate) peer connection"
|
||||
});
|
||||
|
||||
var test;
|
||||
runTest(function () {
|
||||
test = new PeerConnectionTest();
|
||||
var test = new PeerConnectionTest();
|
||||
test.setMediaConstraints([{audio: true}, {video: true}],
|
||||
[{audio: true}, {video: true}]);
|
||||
test.run();
|
||||
|
|
|
@ -16,9 +16,8 @@
|
|||
title: "Basic audio/video (combined) peer connection"
|
||||
});
|
||||
|
||||
var test;
|
||||
runTest(function () {
|
||||
test = new PeerConnectionTest();
|
||||
var test = new PeerConnectionTest();
|
||||
test.setMediaConstraints([{audio: true}, {video: true}],
|
||||
[{audio: true}, {video: true}]);
|
||||
test.run();
|
||||
|
|
|
@ -15,9 +15,8 @@
|
|||
title: "Basic video-only peer connection"
|
||||
});
|
||||
|
||||
var test;
|
||||
runTest(function () {
|
||||
test = new PeerConnectionTest();
|
||||
var test = new PeerConnectionTest();
|
||||
test.setMediaConstraints([{video: true}], [{video: true}]);
|
||||
test.run();
|
||||
}, true);
|
||||
|
|
|
@ -79,9 +79,8 @@
|
|||
]
|
||||
];
|
||||
|
||||
var test;
|
||||
runTest(function () {
|
||||
test = new PeerConnectionTest();
|
||||
var test = new PeerConnectionTest();
|
||||
test.setMediaConstraints([{audio: true}], [{audio: true}]);
|
||||
test.chain.append(steps);
|
||||
test.run();
|
||||
|
|
|
@ -106,9 +106,8 @@
|
|||
]
|
||||
];
|
||||
|
||||
var test;
|
||||
runTest(function () {
|
||||
test = new PeerConnectionTest();
|
||||
var test = new PeerConnectionTest();
|
||||
test.setMediaConstraints([{audio: true, video: true}], [ ]);
|
||||
test.chain.replaceAfter("PC_LOCAL_GUM", steps);
|
||||
test.run();
|
||||
|
|
Загрузка…
Ссылка в новой задаче