25 lines
647 B
JavaScript
25 lines
647 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
// https://w3c.github.io/mediacapture-image/
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['image-capture'],
|
|
['mediacapture-streams', 'html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
ImageCapture : ['capture'],
|
|
});
|
|
|
|
const canvas = document.createElement('canvas');
|
|
document.body.appendChild(canvas);
|
|
const context = canvas.getContext("2d");
|
|
context.fillStyle = "red";
|
|
context.fillRect(0, 0, 10, 10);
|
|
const track = canvas.captureStream().getVideoTracks()[0];
|
|
self.capture = new ImageCapture(track);
|
|
}
|
|
);
|