summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-speech/age-declarations-male-001.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-speech/age-declarations-male-001.html
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-speech/age-declarations-male-001.html')
-rw-r--r--testing/web-platform/tests/css/css-speech/age-declarations-male-001.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-speech/age-declarations-male-001.html b/testing/web-platform/tests/css/css-speech/age-declarations-male-001.html
new file mode 100644
index 0000000000..8228470268
--- /dev/null
+++ b/testing/web-platform/tests/css/css-speech/age-declarations-male-001.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>CSS Test: voice-family age keywords + male</title>
+ <link rel="author" title="John Foliot" href="mailto:john@foliot.ca">
+ <link rel="author" title="Katherine Mancuso" href="mailto:kmancuso@gmail.com">
+ <link rel="author" title="Ryan Eilders" href="mailto:ryaneilders@gmail.com">
+ <link rel="help" href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family">
+ <meta name="flags" content="speech">
+ <meta name="assert" content="The child, young, and old values of voice-family +male render the text in child, young, and old male voices, respectively.">
+
+
+ <style>
+ p.child_m { voice-family: child male; }
+ p.young_m { voice-family: young male; }
+ p.old_m { voice-family: old male; }
+
+ </style>
+
+</head>
+<body>
+
+ <p class="child_m">This sentence should be read in a child's male voice.</p>
+ <p class="young_m">This sentence should be read in a young male voice.</p>
+ <p class="old_m">This sentence should be read in a old male voice.</p>
+
+</body>
+</html>