Backed out changeset f02da37bce59 (bug 1492686) for failing ctor-analyser.html and test-analysernode.html CLOSED TREE

This commit is contained in:
Bogdan Tara 2018-09-25 00:56:38 +03:00
Родитель f3d2b69ad7
Коммит ad16090df7
3 изменённых файлов: 7 добавлений и 7 удалений

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

@ -661041,7 +661041,7 @@
"support"
],
"webaudio/the-audio-api/the-analysernode-interface/ctor-analyser.html": [
"a9aa4831516c6a5cefa7c8b4f67f3ef246d24777",
"4e27f842ddeda3e2bdd78da7b8ee3f67062d1a9f",
"testharness"
],
"webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-basic.html": [
@ -661073,7 +661073,7 @@
"testharness"
],
"webaudio/the-audio-api/the-analysernode-interface/test-analysernode.html": [
"a8b5a7154e94479460c1085c6b5cb584e9b6976c",
"52d3829cff3dfceef64a34669bc8e0d6e08883a9",
"testharness"
],
"webaudio/the-audio-api/the-audiobuffer-interface/.gitkeep": [

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

@ -32,7 +32,7 @@
prefix: prefix,
numberOfInputs: 1,
numberOfOutputs: 1,
channelCount: 2,
channelCount: 1,
channelCountMode: 'max',
channelInterpretation: 'speakers'
});

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

@ -27,8 +27,8 @@
assert_equals(
analyser.channelCount,
2,
"analyser node has 2 input channels by default"
1,
"analyser node has 1 input channels by default"
);
assert_equals(
analyser.channelCountMode,
@ -131,8 +131,8 @@
var analyser = new AnalyserNode(context);
assert_equals(
analyser.channelCount,
2,
"analyser node has 2 input channels by default"
1,
"analyser node has 1 input channels by default"
);
assert_equals(
analyser.channelCountMode,