mirror of
https://github.com/servo/servo.git
synced 2025-08-27 08:08:19 +01:00
Implement DOMPoint.fromPoint
This commit is contained in:
parent
5f477707a1
commit
40dbb2c100
19 changed files with 30 additions and 133 deletions
|
@ -45,7 +45,7 @@
|
|||
// The promise from |startRendering| is returned.
|
||||
function doTest(context, should, options) {
|
||||
let merger = new ChannelMergerNode(
|
||||
context, {numberOfInputs: context.destination.numberOfChannels});
|
||||
context, {numberOfInputs: context.destination.channelCount});
|
||||
merger.connect(context.destination);
|
||||
|
||||
let src = null;
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
});
|
||||
|
||||
let merger = new ChannelMergerNode(
|
||||
context, {numberOfInputs: context.numberOfChannels});
|
||||
context, {numberOfInputs: context.destination.channelCount});
|
||||
merger.connect(context.destination);
|
||||
let inverter = new GainNode(context, {gain: -1});
|
||||
inverter.connect(merger, 0, 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue