From 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:47:29 +0200 Subject: Adding upstream version 115.8.0esr. Signed-off-by: Daniel Baumann --- .../tests/webvtt/api/VTTCue/align.html | 67 ++++++++++++++ .../tests/webvtt/api/VTTCue/categories.json | 3 + .../web-platform/tests/webvtt/api/VTTCue/common.js | 8 ++ .../webvtt/api/VTTCue/constructor-exceptions.html | 25 ++++++ .../tests/webvtt/api/VTTCue/constructor.html | 56 ++++++++++++ .../tests/webvtt/api/VTTCue/getCueAsHTML.html | 93 +++++++++++++++++++ .../web-platform/tests/webvtt/api/VTTCue/line.html | 65 ++++++++++++++ .../tests/webvtt/api/VTTCue/lineAlign.html | 39 ++++++++ .../tests/webvtt/api/VTTCue/position.html | 32 +++++++ .../tests/webvtt/api/VTTCue/positionAlign.html | 23 +++++ .../tests/webvtt/api/VTTCue/region.html | 38 ++++++++ .../web-platform/tests/webvtt/api/VTTCue/size.html | 26 ++++++ .../tests/webvtt/api/VTTCue/snapToLines.html | 100 +++++++++++++++++++++ .../web-platform/tests/webvtt/api/VTTCue/text.html | 41 +++++++++ .../tests/webvtt/api/VTTCue/vertical.html | 57 ++++++++++++ 15 files changed, 673 insertions(+) create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/align.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/categories.json create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/common.js create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/constructor-exceptions.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/constructor.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/getCueAsHTML.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/line.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/lineAlign.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/position.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/positionAlign.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/region.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/size.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/snapToLines.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/text.html create mode 100644 testing/web-platform/tests/webvtt/api/VTTCue/vertical.html (limited to 'testing/web-platform/tests/webvtt/api/VTTCue') diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/align.html b/testing/web-platform/tests/webvtt/api/VTTCue/align.html new file mode 100644 index 0000000000..e3a920ae94 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/align.html @@ -0,0 +1,67 @@ + +VTTCue.align + + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/categories.json b/testing/web-platform/tests/webvtt/api/VTTCue/categories.json new file mode 100644 index 0000000000..eaa5ef17fc --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/categories.json @@ -0,0 +1,3 @@ +{ + "region.html": "regions" +} diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/common.js b/testing/web-platform/tests/webvtt/api/VTTCue/common.js new file mode 100644 index 0000000000..2c39352a84 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/common.js @@ -0,0 +1,8 @@ +function make_vtt_track(contents, test) { + var track_blob = new Blob([contents], { type: 'text/vtt' }); + var track_url = URL.createObjectURL(track_blob); + test.add_cleanup(function() { + URL.revokeObjectURL(track_url); + }); + return track_url; +} diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/constructor-exceptions.html b/testing/web-platform/tests/webvtt/api/VTTCue/constructor-exceptions.html new file mode 100644 index 0000000000..06ad7f041c --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/constructor-exceptions.html @@ -0,0 +1,25 @@ + +VTTCue constructor exceptions + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/constructor.html b/testing/web-platform/tests/webvtt/api/VTTCue/constructor.html new file mode 100644 index 0000000000..2937f0cecb --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/constructor.html @@ -0,0 +1,56 @@ + +VTTCue() + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/getCueAsHTML.html b/testing/web-platform/tests/webvtt/api/VTTCue/getCueAsHTML.html new file mode 100644 index 0000000000..2f07d3aa0a --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/getCueAsHTML.html @@ -0,0 +1,93 @@ + +VTTCue.getCueAsHTML() + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/line.html b/testing/web-platform/tests/webvtt/api/VTTCue/line.html new file mode 100644 index 0000000000..dcf46db052 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/line.html @@ -0,0 +1,65 @@ + +VTTCue.line + + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/lineAlign.html b/testing/web-platform/tests/webvtt/api/VTTCue/lineAlign.html new file mode 100644 index 0000000000..7be0d540e1 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/lineAlign.html @@ -0,0 +1,39 @@ + +VTTCue.lineAlign + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/position.html b/testing/web-platform/tests/webvtt/api/VTTCue/position.html new file mode 100644 index 0000000000..c0485e7a79 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/position.html @@ -0,0 +1,32 @@ + +VTTCue.position + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/positionAlign.html b/testing/web-platform/tests/webvtt/api/VTTCue/positionAlign.html new file mode 100644 index 0000000000..bde1c6eee7 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/positionAlign.html @@ -0,0 +1,23 @@ + +VTTCue.positionAlign + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/region.html b/testing/web-platform/tests/webvtt/api/VTTCue/region.html new file mode 100644 index 0000000000..ae51c5f603 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/region.html @@ -0,0 +1,38 @@ + +VTTCue.region + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/size.html b/testing/web-platform/tests/webvtt/api/VTTCue/size.html new file mode 100644 index 0000000000..fdb8059c72 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/size.html @@ -0,0 +1,26 @@ + +VTTCue.size + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/snapToLines.html b/testing/web-platform/tests/webvtt/api/VTTCue/snapToLines.html new file mode 100644 index 0000000000..b3f9f34f10 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/snapToLines.html @@ -0,0 +1,100 @@ + +VTTCue.snapToLines + + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/text.html b/testing/web-platform/tests/webvtt/api/VTTCue/text.html new file mode 100644 index 0000000000..a61c600db9 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/text.html @@ -0,0 +1,41 @@ + +VTTCue.text + + + + +
+ diff --git a/testing/web-platform/tests/webvtt/api/VTTCue/vertical.html b/testing/web-platform/tests/webvtt/api/VTTCue/vertical.html new file mode 100644 index 0000000000..8b93f6b003 --- /dev/null +++ b/testing/web-platform/tests/webvtt/api/VTTCue/vertical.html @@ -0,0 +1,57 @@ + +VTTCue.vertical + + + + +
+ -- cgit v1.2.3