mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
This commit is contained in:
parent
fb4f421c8b
commit
296fa2512b
21852 changed files with 2080936 additions and 892894 deletions
22
tests/wpt/css-tests/css-speech-1_dev/html/Integer.htm
Normal file
22
tests/wpt/css-tests/css-speech-1_dev/html/Integer.htm
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Speech: Integer Attribute</title>
|
||||
<link href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="mailto:kmancuso@gmail.com" rel="author" title="Katherine Mancuso">
|
||||
<link href="mailto:ryaneilders@gmail.com" rel="author" title="Ryan Eilders">
|
||||
<link href="mailto:arronei@microsoft.com" rel="reviewer" title="Arron Eicholz">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="User has 2 female voices installed on the system" name="assert">
|
||||
<style type="text/css">
|
||||
p.voice1 {voice-family: female 1;}
|
||||
p.voice2 {voice-family: female 2;}
|
||||
</style>
|
||||
|
||||
</head><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>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Test: voice-family age keywords</title>
|
||||
<link href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="mailto:kmancuso@gmail.com" rel="author" title="Katherine Mancuso">
|
||||
<link href="mailto:ryaneilders@gmail.com" rel="author" title="Ryan Eilders">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="The child, young, and old values of voice-family render the text in child, young, and old voices, respectively." name="assert">
|
||||
|
||||
|
||||
<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 href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="mailto:kmancuso@gmail.com" rel="author" title="Katherine Mancuso">
|
||||
<link href="mailto:ryaneilders@gmail.com" rel="author" title="Ryan Eilders">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="The child, young, and old values of voice-family +femal render the text in child, young, and old female voices, respectively." name="assert">
|
||||
|
||||
|
||||
<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 href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="mailto:kmancuso@gmail.com" rel="author" title="Katherine Mancuso">
|
||||
<link href="mailto:ryaneilders@gmail.com" rel="author" title="Ryan Eilders">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="The child, young, and old values of voice-family +male render the text in child, young, and old male voices, respectively." name="assert">
|
||||
|
||||
|
||||
<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 href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="mailto:kmancuso@gmail.com" rel="author" title="Katherine Mancuso">
|
||||
<link href="mailto:ryaneilders@gmail.com" rel="author" title="Ryan Eilders">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="The child, young, and old values of voice-family + neutral render the text in child, young, and old neutral voices, respectively." name="assert">
|
||||
|
||||
|
||||
<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>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-1.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-1.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Introduction, design goals - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Introduction, design goals (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#intro">1 Introduction, design goals</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
60
tests/wpt/css-tests/css-speech-1_dev/html/chapter-10.htm
Normal file
60
tests/wpt/css-tests/css-speech-1_dev/html/chapter-10.htm
Normal file
|
@ -0,0 +1,60 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Rest properties - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Rest properties (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s10">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s10">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#rest-props">10 Rest properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s10.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s10.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#rest-props-rest-before-after">10.1 The ‘rest-before’ and ‘rest-after’ properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s10.1.#rest-after">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s10.1.#rest-before">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s10.2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s10.2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#rest-props-rest">10.2 The ‘rest’ shorthand property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s10.2.#rest">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
66
tests/wpt/css-tests/css-speech-1_dev/html/chapter-11.htm
Normal file
66
tests/wpt/css-tests/css-speech-1_dev/html/chapter-11.htm
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Cue properties - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Cue properties (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s11">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s11">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#cue-props">11 Cue properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s11.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s11.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#cue-props-cue-before-after">11.1 The ‘cue-before’ and ‘cue-after’ properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s11.1.#cue-after">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s11.1.#cue-before">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s11.2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s11.2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#cue-props-volume">11.2 Relation between audio cues and speech synthesis volume levels</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s11.3">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s11.3">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#cue-props-cue">11.3 The ‘cue’ shorthand property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s11.3.#cue">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
167
tests/wpt/css-tests/css-speech-1_dev/html/chapter-12.htm
Normal file
167
tests/wpt/css-tests/css-speech-1_dev/html/chapter-12.htm
Normal file
|
@ -0,0 +1,167 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Voice characteristic properties - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Voice characteristic properties (7 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s12">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-char-props">12 Voice characteristic properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-props-voice-family">12.1 The ‘voice-family’ property</a></th></tr>
|
||||
<!-- 7 tests -->
|
||||
<tr id="age-declarations-001-12.1" class="speech">
|
||||
<td>
|
||||
<a href="age-declarations-001.htm">age-declarations-001</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>voice-family age keywords
|
||||
<ul class="assert">
|
||||
<li>The child, young, and old values of voice-family render the text in child, young, and old voices, respectively.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="age-declarations-female-001-12.1" class="speech">
|
||||
<td>
|
||||
<a href="age-declarations-female-001.htm">age-declarations-female-001</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>voice-family age keywords + femal
|
||||
<ul class="assert">
|
||||
<li>The child, young, and old values of voice-family +femal render the text in child, young, and old female voices, respectively.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="age-declarations-male-001-12.1" class="speech">
|
||||
<td>
|
||||
<a href="age-declarations-male-001.htm">age-declarations-male-001</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>voice-family age keywords + male
|
||||
<ul class="assert">
|
||||
<li>The child, young, and old values of voice-family +male render the text in child, young, and old male voices, respectively.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="age-declarations-neutral-001-12.1" class="speech">
|
||||
<td>
|
||||
<a href="age-declarations-neutral-001.htm">age-declarations-neutral-001</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>voice-family age keywords + neutral
|
||||
<ul class="assert">
|
||||
<li>The child, young, and old values of voice-family + neutral render the text in child, young, and old neutral voices, respectively.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="generic-gender-declarations-001-12.1" class="speech">
|
||||
<td>
|
||||
<a href="generic-gender-declarations-001.htm">generic-gender-declarations-001</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>voice-family generic gender keywords
|
||||
<ul class="assert">
|
||||
<li>The male, female, and neutral values of voice-family render the text in male, female, and neutral voices, respectively.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="integer-12.1" class="speech">
|
||||
<td>
|
||||
<a href="Integer.htm">integer</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>CSS Speech: Integer Attribute
|
||||
<ul class="assert">
|
||||
<li>User has 2 female voices installed on the system</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="no-voice-family-specified-001-12.1" class="speech">
|
||||
<td>
|
||||
<a href="no-voice-family-specified-001.htm">no-voice-family-specified-001</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="speech" title="Requires speech support">Speech</abbr></td>
|
||||
<td>voice-family not specified
|
||||
<ul class="assert">
|
||||
<li>If no voice-family is specified, the user's preferred voice is used.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="s12.1.#voice-family">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.1.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12.1.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-selection">12.1.1 Voice selection, content language</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12.2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-props-voice-rate">12.2 The ‘voice-rate’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.2.#voice-rate">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.3">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12.3">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-props-voice-pitch">12.3 The ‘voice-pitch’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.3.#voice-pitch">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.4">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12.4">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-props-voice-range">12.4 The ‘voice-range’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.4.#voice-range">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.5">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s12.5">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#voice-props-voice-stress">12.5 The ‘voice-stress’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s12.5.#voice-stress">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
48
tests/wpt/css-tests/css-speech-1_dev/html/chapter-13.htm
Normal file
48
tests/wpt/css-tests/css-speech-1_dev/html/chapter-13.htm
Normal file
|
@ -0,0 +1,48 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Voice duration property - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Voice duration property (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s13">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s13">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#duration-props">13 Voice duration property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s13.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s13.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#mixing-props-voice-duration">13.1 The ‘voice-duration’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s13.1.#voice-duration">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-14.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-14.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>List items and counters styles - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>List items and counters styles (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s14">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s14">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#lists">14 List items and counters styles</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-15.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-15.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Inserted and replaced content - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Inserted and replaced content (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s15">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s15">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#content">15 Inserted and replaced content</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
198
tests/wpt/css-tests/css-speech-1_dev/html/chapter-16.htm
Normal file
198
tests/wpt/css-tests/css-speech-1_dev/html/chapter-16.htm
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Pronunciation, phonemes - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Pronunciation, phonemes (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s16">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s16">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#pronunciation">16 Pronunciation, phonemes</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#abstract">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#ack">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#changes">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#contents">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#definitions">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#index">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#longstatus-date">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#property-index">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#references">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#status">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s.#top">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sconformance.#authoring-tool">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sconformance.#renderer">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sconformance.#style-sheet0">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sdefinitions.#conformance">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sdefinitions.#exit">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sdefinitions.#glossary">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sglossary.#document">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sglossary.#style-sheet">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sglossary.#ua">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sglossary.#user-agent">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="slongstatus-date.#editors-list">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="slongstatus-date.#versions">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="snormative-references.#CSS21">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="snormative-references.#CSS3VAL">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="snormative-references.#RFC2119">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="snormative-references.#SSML">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="snormative-references.#XML11">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sother-references.#CSS3GENCON">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sother-references.#CSS3LIST">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sother-references.#PRONUNCIATION-LEXICON">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sother-references.#SSML-SAYAS">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#border-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#box-model-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#cascade-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#content-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#display-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#font-family-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#frequency-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#identifier-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#integer-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#list-style-image-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#list-style-type-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#margin-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#non-negative-number-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#number-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#padding-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#percentage-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#strings-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sproperty-index.#time-def">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sreferences.#normative-references">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sreferences.#other-references">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="sstatus.#at-risk">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-2.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-2.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Background information, CSS 2.1 - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Background information, CSS 2.1 (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#background">2 Background information, CSS 2.1</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-3.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-3.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Relationship with SSML - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Relationship with SSML (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s3">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s3">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#ssml-rel">3 Relationship with SSML</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-4.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-4.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS values - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>CSS values (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s4">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s4">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#css-values">4 CSS values</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-5.htm
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/html/chapter-5.htm
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Example - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Example (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s5">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s5">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#example">5 Example</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
45
tests/wpt/css-tests/css-speech-1_dev/html/chapter-6.htm
Normal file
45
tests/wpt/css-tests/css-speech-1_dev/html/chapter-6.htm
Normal file
|
@ -0,0 +1,45 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>The aural formatting model - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>The aural formatting model (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s6">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s6">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#aural-model">6 The aural formatting model</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s6.#aural-box">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s6.#aural-box-model">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
57
tests/wpt/css-tests/css-speech-1_dev/html/chapter-7.htm
Normal file
57
tests/wpt/css-tests/css-speech-1_dev/html/chapter-7.htm
Normal file
|
@ -0,0 +1,57 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Mixing properties - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Mixing properties (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s7">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s7">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#mixing-props">7 Mixing properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s7.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s7.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#mixing-props-voice-volume">7.1 The ‘voice-volume’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s7.1.#voice-volume">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s7.2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s7.2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#mixing-props-voice-balance">7.2 The ‘voice-balance’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s7.2.#voice-balance">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
57
tests/wpt/css-tests/css-speech-1_dev/html/chapter-8.htm
Normal file
57
tests/wpt/css-tests/css-speech-1_dev/html/chapter-8.htm
Normal file
|
@ -0,0 +1,57 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Speaking properties - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Speaking properties (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s8">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s8">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#speaking-props">8 Speaking properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s8.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s8.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#speaking-props-speak">8.1 The ‘speak’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s8.1.#speak">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s8.2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s8.2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#speaking-props-speak-as">8.2 The ‘speak-as’ property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s8.2.#speak-as">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
66
tests/wpt/css-tests/css-speech-1_dev/html/chapter-9.htm
Normal file
66
tests/wpt/css-tests/css-speech-1_dev/html/chapter-9.htm
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Pause properties - CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite</h1>
|
||||
<h2>Pause properties (0 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="refs-column">
|
||||
<col id="flags-column">
|
||||
<col id="info-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th><abbr title="Rendering References">Refs</abbr></th>
|
||||
<th>Flags</th>
|
||||
<th>Info</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="s9">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s9">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#pause-props">9 Pause properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s9.1">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s9.1">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#pause-props-pause-before-after">9.1 The ‘pause-before’ and ‘pause-after’ properties</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s9.1.#pause-after">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s9.1.#pause-before">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s9.2">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s9.2">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#pause-props-pause">9.2 The ‘pause’ shorthand property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s9.2.#pause">
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
<tbody id="s9.3">
|
||||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s9.3">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-speech/#collapsed-pauses">9.3 Collapsing pauses</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Test: voice-family generic gender keywords</title>
|
||||
<link href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="The male, female, and neutral values of voice-family render the text in male, female, and neutral voices, respectively." name="assert">
|
||||
|
||||
|
||||
<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 href="mailto:john@foliot.ca" rel="author" title="John Foliot">
|
||||
<link href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family" rel="help">
|
||||
<meta content="speech" name="flags">
|
||||
<meta content="If no voice-family is specified, the user's preferred voice is used." name="assert">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>This sentence should be read in the user's preferred voice.</p>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
30
tests/wpt/css-tests/css-speech-1_dev/html/reftest-toc.htm
Normal file
30
tests/wpt/css-tests/css-speech-1_dev/html/reftest-toc.htm
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Speech Module Level 1 CR Test Suite Reftest Index</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite Reftest Index</h1>
|
||||
<table width="100%">
|
||||
<col id="test-column">
|
||||
<col id="ref-column">
|
||||
<col id="flags-column">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th>Reference</th>
|
||||
<th>Flags</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
1
tests/wpt/css-tests/css-speech-1_dev/html/reftest.list
Normal file
1
tests/wpt/css-tests/css-speech-1_dev/html/reftest.list
Normal file
|
@ -0,0 +1 @@
|
|||
|
104
tests/wpt/css-tests/css-speech-1_dev/html/toc.htm
Normal file
104
tests/wpt/css-tests/css-speech-1_dev/html/toc.htm
Normal file
|
@ -0,0 +1,104 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Speech Module Level 1 CR Test Suite</title>
|
||||
<style type="text/css">
|
||||
@import "http://www.w3.org/StyleSheets/TR/base.css";
|
||||
@import "../indices.css";
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>CSS Speech Module Level 1 CR Test Suite By Chapter</h1>
|
||||
|
||||
<p>This index contains both
|
||||
<a href="http://wiki.csswg.org/test/selftest">self-describing tests</a>
|
||||
and reftests.
|
||||
A separate <a href="reftest-toc.htm">alphabetical reftest index</a>
|
||||
is provided for tests in <a href="http://wiki.csswg.org/test/reftest">reftest
|
||||
format</a> along with the <a href="reftest.list">reftest manifest</a>.</p>
|
||||
|
||||
<table>
|
||||
<tbody id="s1">
|
||||
<tr><th><a href="chapter-1.htm">Chapter 1 -
|
||||
Introduction, design goals</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s2">
|
||||
<tr><th><a href="chapter-2.htm">Chapter 2 -
|
||||
Background information, CSS 2.1</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s3">
|
||||
<tr><th><a href="chapter-3.htm">Chapter 3 -
|
||||
Relationship with SSML</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s4">
|
||||
<tr><th><a href="chapter-4.htm">Chapter 4 -
|
||||
CSS values</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s5">
|
||||
<tr><th><a href="chapter-5.htm">Chapter 5 -
|
||||
Example</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s6">
|
||||
<tr><th><a href="chapter-6.htm">Chapter 6 -
|
||||
The aural formatting model</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s7">
|
||||
<tr><th><a href="chapter-7.htm">Chapter 7 -
|
||||
Mixing properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s8">
|
||||
<tr><th><a href="chapter-8.htm">Chapter 8 -
|
||||
Speaking properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s9">
|
||||
<tr><th><a href="chapter-9.htm">Chapter 9 -
|
||||
Pause properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s10">
|
||||
<tr><th><a href="chapter-10.htm">Chapter 10 -
|
||||
Rest properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s11">
|
||||
<tr><th><a href="chapter-11.htm">Chapter 11 -
|
||||
Cue properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s12">
|
||||
<tr><th><a href="chapter-12.htm">Chapter 12 -
|
||||
Voice characteristic properties</a></th>
|
||||
<td>(7 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s13">
|
||||
<tr><th><a href="chapter-13.htm">Chapter 13 -
|
||||
Voice duration property</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s14">
|
||||
<tr><th><a href="chapter-14.htm">Chapter 14 -
|
||||
List items and counters styles</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s15">
|
||||
<tr><th><a href="chapter-15.htm">Chapter 15 -
|
||||
Inserted and replaced content</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s16">
|
||||
<tr><th><a href="chapter-16.htm">Chapter 16 -
|
||||
Pronunciation, phonemes</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue