diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/speech-api/SpeechSynthesisUtterance-basics.https.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/speech-api/SpeechSynthesisUtterance-basics.https.html')
-rw-r--r-- | testing/web-platform/tests/speech-api/SpeechSynthesisUtterance-basics.https.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/testing/web-platform/tests/speech-api/SpeechSynthesisUtterance-basics.https.html b/testing/web-platform/tests/speech-api/SpeechSynthesisUtterance-basics.https.html new file mode 100644 index 0000000000..2fd394150e --- /dev/null +++ b/testing/web-platform/tests/speech-api/SpeechSynthesisUtterance-basics.https.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<title>SpeechSynthesisUtterance basics</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script> +const DEFAULTS = { + text: '', + lang: '', + voice: null, + volume: 1, + rate: 1, + pitch: 1, +}; + +for (const prop in DEFAULTS) { + test(function() { + const utt = new SpeechSynthesisUtterance(); + assert_equals(utt[prop], DEFAULTS[prop], prop); + }, `new SpeechSynthesisUtterance() default ${prop}`); +} + +test(function() { + const utt = new SpeechSynthesisUtterance("hello"); + assert_equals(utt.text, 'hello', 'text'); + // check that the other properties retain their defaults + for (const prop in DEFAULTS) { + if (prop != 'text') { + assert_equals(utt[prop], DEFAULTS[prop], prop); + } + } +}, 'new SpeechSynthesisUtterance("hello") text and defaults'); + +test(function() { + const utt = new SpeechSynthesisUtterance(null); + assert_equals(utt.text, 'null'); +}, 'new SpeechSynthesisUtterance(null)'); + +test(function() { + const utt = new SpeechSynthesisUtterance(undefined); + // See https://github.com/w3c/speech-api/pull/48. + assert_equals(utt.text, ''); +}, 'new SpeechSynthesisUtterance(undefined)'); + +test(function() { + const utt = new SpeechSynthesisUtterance(); + utt.text = 'word'; + assert_equals(utt.text, 'word'); +}, 'SpeechSynthesisUtterance text setter'); + +// TODO: setters https://github.com/w3c/speech-api/issues/29 +</script> |