mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985
This commit is contained in:
parent
43a4f01647
commit
64e0a52537
12717 changed files with 59835 additions and 59820 deletions
22
tests/wpt/web-platform-tests/css/css-speech/Integer.html
Normal file
22
tests/wpt/web-platform-tests/css/css-speech/Integer.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Speech: Integer Attribute</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="reviewer" title="Arron Eicholz" href="mailto:arronei@microsoft.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="User has 2 female voices installed on the system">
|
||||
<style type="text/css">
|
||||
p.voice1 {voice-family: female 1;}
|
||||
p.voice2 {voice-family: female 2;}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<p style=voice1>This should be read in one female voice.</p>
|
||||
|
||||
<p style=voice2>This should be read in a different female voice.</p>
|
||||
</body>
|
||||
</html>
|
1
tests/wpt/web-platform-tests/css/css-speech/OWNERS
Normal file
1
tests/wpt/web-platform-tests/css/css-speech/OWNERS
Normal file
|
@ -0,0 +1 @@
|
|||
@danielweck
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Test: voice-family age keywords</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 render the text in child, young, and old voices, respectively.">
|
||||
|
||||
|
||||
<style>
|
||||
p.child { voice-family: child; }
|
||||
p.young { voice-family: young; }
|
||||
p.old { voice-family: old; }
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p class="child">This sentence should be read in a child's voice.</p>
|
||||
<p class="young">This sentence should be read in a young voice.</p>
|
||||
<p class="old">This sentence should be read in a old voice.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Test: voice-family age keywords + femal</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 +femal render the text in child, young, and old female voices, respectively.">
|
||||
|
||||
|
||||
<style>
|
||||
p.child_f { voice-family: child female; }
|
||||
p.young_f { voice-family: young female; }
|
||||
p.old_f { voice-family: old female; }
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p class="child_f">This sentence should be read in a child's female voice.</p>
|
||||
<p class="young_f">This sentence should be read in a young female voice.</p>
|
||||
<p class="old_f">This sentence should be read in a old female voice.</p>
|
||||
|
||||
</body>
|
||||
</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>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Test: voice-family age keywords + neutral</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 + neutral render the text in child, young, and old neutral voices, respectively.">
|
||||
|
||||
|
||||
<style>
|
||||
p.child_n { voice-family: child neutral; }
|
||||
p.young_n { voice-family: young neutral; }
|
||||
p.old_n { voice-family: old neutral; }
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p class="child_n">This sentence should be read in a child's neutral voice.</p>
|
||||
<p class="young_n">This sentence should be read in a young neutral voice.</p>
|
||||
<p class="old_n">This sentence should be read in a old neutral voice.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Test: voice-family generic gender keywords</title>
|
||||
<link rel="author" title="John Foliot" href="mailto:john@foliot.ca">
|
||||
<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 male, female, and neutral values of voice-family render the text in male, female, and neutral voices, respectively.">
|
||||
|
||||
|
||||
<style>
|
||||
p.male { voice-family: male; }
|
||||
p.female { voice-family: female; }
|
||||
p.neutral { voice-family: neutral; }
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p class="male">This sentence should be read in a male voice.</p>
|
||||
<p class="female">This sentence should be read in a female voice.</p>
|
||||
<p class="neutral">This sentence should be read in a "neutral" voice.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Test: voice-family not specified</title>
|
||||
<link rel="author" title="John Foliot" href="mailto:john@foliot.ca">
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family">
|
||||
<meta name="flags" content="speech">
|
||||
<meta name="assert" content="If no voice-family is specified, the user's preferred voice is used." >
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>This sentence should be read in the user's preferred voice.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue