From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../mediacapture-record/BlobEvent-constructor.html | 38 ++++ .../tests/mediacapture-record/META.yml | 3 + .../MediaRecorder-bitrate.https.html | 230 +++++++++++++++++++++ .../MediaRecorder-canvas-media-source.https.html | 128 ++++++++++++ .../MediaRecorder-creation.https.html | 59 ++++++ .../MediaRecorder-destroy-script-execution.html | 79 +++++++ .../MediaRecorder-detached-context.html | 26 +++ .../MediaRecorder-disabled-tracks.https.html | 56 +++++ .../mediacapture-record/MediaRecorder-error.html | 71 +++++++ .../MediaRecorder-events-and-exceptions.html | 108 ++++++++++ .../MediaRecorder-mimetype.html | 205 ++++++++++++++++++ .../MediaRecorder-pause-resume.html | 90 ++++++++ ...MediaRecorder-peerconnection-no-sink.https.html | 51 +++++ .../MediaRecorder-peerconnection.https.html | 86 ++++++++ .../mediacapture-record/MediaRecorder-start.html | 25 +++ .../mediacapture-record/MediaRecorder-stop.html | 166 +++++++++++++++ .../MediaRecorder-video-key-frame-distance.html | 39 ++++ .../tests/mediacapture-record/idlharness.window.js | 40 ++++ .../MediaRecorder-passthrough.https.html | 74 +++++++ .../support/MediaRecorder-iframe.html | 20 ++ .../mediacapture-record/utils/peerconnection.js | 141 +++++++++++++ .../tests/mediacapture-record/utils/sources.js | 75 +++++++ 22 files changed, 1810 insertions(+) create mode 100644 testing/web-platform/tests/mediacapture-record/BlobEvent-constructor.html create mode 100644 testing/web-platform/tests/mediacapture-record/META.yml create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-bitrate.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-canvas-media-source.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-creation.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-destroy-script-execution.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-detached-context.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-disabled-tracks.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-error.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-events-and-exceptions.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-mimetype.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-pause-resume.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-start.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-stop.html create mode 100644 testing/web-platform/tests/mediacapture-record/MediaRecorder-video-key-frame-distance.html create mode 100644 testing/web-platform/tests/mediacapture-record/idlharness.window.js create mode 100644 testing/web-platform/tests/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html create mode 100644 testing/web-platform/tests/mediacapture-record/support/MediaRecorder-iframe.html create mode 100644 testing/web-platform/tests/mediacapture-record/utils/peerconnection.js create mode 100644 testing/web-platform/tests/mediacapture-record/utils/sources.js (limited to 'testing/web-platform/tests/mediacapture-record') diff --git a/testing/web-platform/tests/mediacapture-record/BlobEvent-constructor.html b/testing/web-platform/tests/mediacapture-record/BlobEvent-constructor.html new file mode 100644 index 0000000000..66dc3404d7 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/BlobEvent-constructor.html @@ -0,0 +1,38 @@ + +BlobEvent constructor + + + + diff --git a/testing/web-platform/tests/mediacapture-record/META.yml b/testing/web-platform/tests/mediacapture-record/META.yml new file mode 100644 index 0000000000..d59e5e3084 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/META.yml @@ -0,0 +1,3 @@ +spec: https://w3c.github.io/mediacapture-record/ +suggested_reviewers: + - yellowdoge diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-bitrate.https.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-bitrate.https.html new file mode 100644 index 0000000000..d89f739033 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-bitrate.https.html @@ -0,0 +1,230 @@ + + + +MediaRecorder {audio|video}bitsPerSecond attributes + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-canvas-media-source.https.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-canvas-media-source.https.html new file mode 100644 index 0000000000..187015f42e --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-canvas-media-source.https.html @@ -0,0 +1,128 @@ + + + + + + MediaRecorder canvas media source + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-creation.https.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-creation.https.html new file mode 100644 index 0000000000..d2190c3ee5 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-creation.https.html @@ -0,0 +1,59 @@ + + + + MediaRecorder Creation + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-destroy-script-execution.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-destroy-script-execution.html new file mode 100644 index 0000000000..3e9add3c61 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-destroy-script-execution.html @@ -0,0 +1,79 @@ + + + +MediaRecorder destroy script execution context + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-detached-context.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-detached-context.html new file mode 100644 index 0000000000..bd49a720b9 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-detached-context.html @@ -0,0 +1,26 @@ + + + + MediaRecorder Detached Context + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-disabled-tracks.https.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-disabled-tracks.https.html new file mode 100644 index 0000000000..ea64673264 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-disabled-tracks.https.html @@ -0,0 +1,56 @@ + + + + MediaRecorder Disabled Tracks + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-error.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-error.html new file mode 100644 index 0000000000..39e8676d19 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-error.html @@ -0,0 +1,71 @@ + + + + MediaRecorder Error + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-events-and-exceptions.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-events-and-exceptions.html new file mode 100644 index 0000000000..0a377991ba --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-events-and-exceptions.html @@ -0,0 +1,108 @@ + + + + MediaRecorder events and exceptions + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-mimetype.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-mimetype.html new file mode 100644 index 0000000000..07721abfd4 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-mimetype.html @@ -0,0 +1,205 @@ + + + + MediaRecorder mimeType + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-pause-resume.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-pause-resume.html new file mode 100644 index 0000000000..84efe52e06 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-pause-resume.html @@ -0,0 +1,90 @@ + + + + MediaRecorder Pause and Resume + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html new file mode 100644 index 0000000000..b806dda898 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html @@ -0,0 +1,51 @@ + + + + + + MediaRecorder peer connection + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection.https.html b/testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection.https.html new file mode 100644 index 0000000000..86c9d4f4a2 --- /dev/null +++ b/testing/web-platform/tests/mediacapture-record/MediaRecorder-peerconnection.https.html @@ -0,0 +1,86 @@ + + + + + + MediaRecorder peer connection + + + + + + + + + + +