From 9e9ef7fbe39426ddba9e32d95362a9eadb3cbf64 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Fri, 19 Jul 2019 19:44:03 +0000 Subject: [PATCH] Bug 1564774 [wpt PR 17660] - Implement DOMPoint.fromPoint, a=testonly Automatic update from web-platform-tests Implement DOMPoint.fromPoint -- wpt-commits: 0b22439430b6d8d9a6d43a0908e86c0366f207c0 wpt-pr: 17660 --- .../the-audioparam-interface/automation-rate-testing.js | 2 +- .../the-audioparam-interface/k-rate-oscillator.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/automation-rate-testing.js b/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/automation-rate-testing.js index 73892dd84588..43279f91d68d 100644 --- a/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/automation-rate-testing.js +++ b/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/automation-rate-testing.js @@ -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; diff --git a/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/k-rate-oscillator.html b/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/k-rate-oscillator.html index 1672f0d975f2..6803f55eab00 100644 --- a/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/k-rate-oscillator.html +++ b/testing/web-platform/tests/webaudio/the-audio-api/the-audioparam-interface/k-rate-oscillator.html @@ -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);