From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../HTMLCanvasElement-getImageData-noframe.html | 30 ++++++++++++++ .../tests/mediacapture-fromelement/META.yml | 5 +++ .../tests/mediacapture-fromelement/capture.html | 38 ++++++++++++++++++ .../tests/mediacapture-fromelement/creation.html | 46 ++++++++++++++++++++++ .../mediacapture-fromelement/cross-origin.html | 41 +++++++++++++++++++ .../tests/mediacapture-fromelement/ended.html | 41 +++++++++++++++++++ .../tests/mediacapture-fromelement/historical.html | 17 ++++++++ .../mediacapture-fromelement/idlharness.window.js | 38 ++++++++++++++++++ 8 files changed, 256 insertions(+) create mode 100644 testing/web-platform/tests/mediacapture-fromelement/HTMLCanvasElement-getImageData-noframe.html create mode 100644 testing/web-platform/tests/mediacapture-fromelement/META.yml create mode 100644 testing/web-platform/tests/mediacapture-fromelement/capture.html create mode 100644 testing/web-platform/tests/mediacapture-fromelement/creation.html create mode 100644 testing/web-platform/tests/mediacapture-fromelement/cross-origin.html create mode 100644 testing/web-platform/tests/mediacapture-fromelement/ended.html create mode 100644 testing/web-platform/tests/mediacapture-fromelement/historical.html create mode 100644 testing/web-platform/tests/mediacapture-fromelement/idlharness.window.js (limited to 'testing/web-platform/tests/mediacapture-fromelement') diff --git a/testing/web-platform/tests/mediacapture-fromelement/HTMLCanvasElement-getImageData-noframe.html b/testing/web-platform/tests/mediacapture-fromelement/HTMLCanvasElement-getImageData-noframe.html new file mode 100644 index 0000000000..48d445f897 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/HTMLCanvasElement-getImageData-noframe.html @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-fromelement/META.yml b/testing/web-platform/tests/mediacapture-fromelement/META.yml new file mode 100644 index 0000000000..17195009fa --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/META.yml @@ -0,0 +1,5 @@ +spec: https://w3c.github.io/mediacapture-fromelement/ +suggested_reviewers: + - yellowdoge + - martinthomson + - uysalere diff --git a/testing/web-platform/tests/mediacapture-fromelement/capture.html b/testing/web-platform/tests/mediacapture-fromelement/capture.html new file mode 100644 index 0000000000..74858737f1 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/capture.html @@ -0,0 +1,38 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-fromelement/creation.html b/testing/web-platform/tests/mediacapture-fromelement/creation.html new file mode 100644 index 0000000000..b025a3ad6c --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/creation.html @@ -0,0 +1,46 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-fromelement/cross-origin.html b/testing/web-platform/tests/mediacapture-fromelement/cross-origin.html new file mode 100644 index 0000000000..14d92c8fc8 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/cross-origin.html @@ -0,0 +1,41 @@ + + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-fromelement/ended.html b/testing/web-platform/tests/mediacapture-fromelement/ended.html new file mode 100644 index 0000000000..845fbcbaa6 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/ended.html @@ -0,0 +1,41 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-fromelement/historical.html b/testing/web-platform/tests/mediacapture-fromelement/historical.html new file mode 100644 index 0000000000..3b86e9de35 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/historical.html @@ -0,0 +1,17 @@ + + + + + Historical features + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-fromelement/idlharness.window.js b/testing/web-platform/tests/mediacapture-fromelement/idlharness.window.js new file mode 100644 index 0000000000..970f3cd5c6 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-fromelement/idlharness.window.js @@ -0,0 +1,38 @@ +// META: script=/resources/WebIDLParser.js +// META: script=/resources/idlharness.js + +// https://w3c.github.io/mediacapture-fromelement/ + +'use strict'; + +idl_test( + ['mediacapture-fromelement'], + ['mediacapture-streams', 'html', 'dom'], + idl_array => { + // Ignored errors will be surfaced when the elements are undefined below. + try { + self.video = document.createElement('video'); + video.width = video.height = 10; + document.body.appendChild(video); + } catch (e) { } + + try { + self.audio = document.createElement('audio'); + document.body.appendChild(audio); + } catch (e) { } + + try { + self.canvas = document.createElement('canvas'); + document.body.appendChild(canvas); + canvas.width = canvas.height = 10; + self.track = canvas.captureStream().getTracks()[0]; + } catch (e) { } + + idl_array.add_objects({ + HTMLVideoElement: ['video'], + HTMLAudioElement: ['audio'], + HTMLCanvasElement: ['canvas'], + CanvasCaptureMediaStreamTrack: ['track'], + }); + } +); -- cgit v1.2.3