Back out 8daa66c443a3 (bug 853858) because of Android and B2G test failures

This commit is contained in:
Matt Brubeck 2013-04-04 17:36:32 -07:00
Родитель b826e0bd18
Коммит 7c919af5b2
6 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -15,8 +15,8 @@
title: "Basic audio-only peer connection"
});
var test = new PeerConnectionTest();
runTest(function () {
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}], [{audio: true}]);
test.run();
}, true);

Просмотреть файл

@ -16,8 +16,8 @@
title: "Basic audio/video (separate) peer connection"
});
var test = new PeerConnectionTest();
runTest(function () {
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}, {video: true}],
[{audio: true}, {video: true}]);
test.run();

Просмотреть файл

@ -16,8 +16,8 @@
title: "Basic audio/video (combined) peer connection"
});
var test = new PeerConnectionTest();
runTest(function () {
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}, {video: true}],
[{audio: true}, {video: true}]);
test.run();

Просмотреть файл

@ -15,8 +15,8 @@
title: "Basic video-only peer connection"
});
var test = new PeerConnectionTest();
runTest(function () {
var test = new PeerConnectionTest();
test.setMediaConstraints([{video: true}], [{video: true}]);
test.run();
}, true);

Просмотреть файл

@ -79,8 +79,8 @@
]
];
var test = new PeerConnectionTest();
runTest(function () {
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}], [{audio: true}]);
test.chain.append(steps);
test.run();

Просмотреть файл

@ -106,8 +106,8 @@
]
];
var test = new PeerConnectionTest();
runTest(function () {
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true, video: true}], [ ]);
test.chain.replaceAfter("PC_LOCAL_GUM", steps);
test.run();