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
This commit is contained in:
Kagami Sascha Rosylight 2019-07-19 19:44:03 +00:00 коммит произвёл James Graham
Родитель acc7e8359f
Коммит 9e9ef7fbe3
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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);