mirror of
https://github.com/servo/servo.git
synced 2025-08-11 00:15:32 +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>
|
|
@ -0,0 +1,19 @@
|
|||
# UA version OS version
|
||||
# UA string (if applicable)
|
||||
# http://test.csswg.org/suites/css-speech-1_dev/DATESTAMP/
|
||||
# See http://wiki.csswg.org/test/implementation-report for instructions
|
||||
testname revision result comment
|
||||
html/age-declarations-001.htm e2daa63e603d15e3ad8893dffb4a2f81c938d18f ?
|
||||
xhtml1/age-declarations-001.xht e2daa63e603d15e3ad8893dffb4a2f81c938d18f ?
|
||||
html/age-declarations-female-001.htm d4a9ba1ab92a84e9910bb73fa390c01994b159d5 ?
|
||||
xhtml1/age-declarations-female-001.xht d4a9ba1ab92a84e9910bb73fa390c01994b159d5 ?
|
||||
html/age-declarations-male-001.htm 066214f11c8507bf418a0358337005db8bf92e3b ?
|
||||
xhtml1/age-declarations-male-001.xht 066214f11c8507bf418a0358337005db8bf92e3b ?
|
||||
html/age-declarations-neutral-001.htm 1bf8b0e0d003c13849ef8634d3481882d4278783 ?
|
||||
xhtml1/age-declarations-neutral-001.xht 1bf8b0e0d003c13849ef8634d3481882d4278783 ?
|
||||
html/generic-gender-declarations-001.htm 27f7803e326ae8be0d0f5915c7d84fa189ac0379 ?
|
||||
xhtml1/generic-gender-declarations-001.xht 27f7803e326ae8be0d0f5915c7d84fa189ac0379 ?
|
||||
html/integer.htm 96cdf795a927e8c66794915c96c07a620a5e0b40 ?
|
||||
xhtml1/integer.xht 96cdf795a927e8c66794915c96c07a620a5e0b40 ?
|
||||
html/no-voice-family-specified-001.htm 1eee8d33d36c0e9a19e84fcd0779ef7a9d433fe0 ?
|
||||
xhtml1/no-voice-family-specified-001.xht 1eee8d33d36c0e9a19e84fcd0779ef7a9d433fe0 ?
|
133
tests/wpt/css-tests/css-speech-1_dev/index.htm
Normal file
133
tests/wpt/css-tests/css-speech-1_dev/index.htm
Normal file
|
@ -0,0 +1,133 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html lang="en">
|
||||
<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</h1>
|
||||
<dt>Test Coordinator:</dt>
|
||||
<dd>None Yet</dd>
|
||||
|
||||
<p>This is a <strong>Development</strong>
|
||||
version of the CSS Speech Module Level 1 CR Test Suite.</p>
|
||||
|
||||
<p>You can provide test data or review the testing results for this test suite:</p>
|
||||
<dt><a href="http://test.csswg.org/harness/suite/css-speech-1_dev">Enter Data</a></dt>
|
||||
<dt><a href="http://test.csswg.org/harness/review/css-speech-1_dev">Review Results</a></dt>
|
||||
|
||||
|
||||
<p>Some tests in the test suite may contain errors.
|
||||
Please check the latest version of the
|
||||
<a href="https://www.w3.org/TR/css3-speech/">CSS Speech 1 specification</a>
|
||||
<strong>and its errata</strong>
|
||||
before assuming a failure is due to an implementation bug and
|
||||
not a test suite bug.</p>
|
||||
|
||||
|
||||
<p>
|
||||
In time we hope to correct all errors and extend this test suite to
|
||||
cover all of CSS Speech 1. Your help is welcome in this effort.
|
||||
The appropriate mailing list for submitting tests and bug reports is
|
||||
<a href="http://lists.w3.org/Archives/Public/public-css-testsuite/">public-css-testsuite@w3.org</a>.
|
||||
More information on the contribution process and test guidelines is
|
||||
available on the <a href="http://wiki.csswg.org/test">wiki
|
||||
page</a>.</p>
|
||||
|
||||
<p>Tests are currently available in these formats:</p>
|
||||
|
||||
<dl>
|
||||
<dt><a href="html/toc.htm">HTML 5</a></dt>
|
||||
<dd>HTML 5 tests sent as <code>text/html</code></dd>
|
||||
<dt><a href="xhtml1/toc.xht">XHTML 1.1</a></dt>
|
||||
<dd>XHTML 1.1 tests sent as <code>application/xhtml+xml</code></dd>
|
||||
|
||||
|
||||
<p>Unless the test instructions explicitly indicate otherwise,
|
||||
any occurrence of red in a test indicates test failure.</p>
|
||||
|
||||
<h2 id="implement">Implementation Reports</h2>
|
||||
<p>An <a href="implementation-report-TEMPLATE.data">implementation report template</a>
|
||||
is available to help with creating implementation reports. See also the
|
||||
<a href="http://lists.w3.org/Archives/Public/public-css-testsuite/2010Aug/0020.html">explanation</a>
|
||||
of its format.</p>
|
||||
|
||||
<h2 id="common">Common Assumptions</h2>
|
||||
|
||||
<p>Most of the test suite makes the following assumptions:</p>
|
||||
<ul>
|
||||
<li>The X/HTML <code>div</code> element is assigned <code>display: block;</code>
|
||||
and no other property declaration.</li>
|
||||
<li>The X/HTML <code>span</code> element is assigned <code>display: inline;</code>
|
||||
and no other property declaration.</li>
|
||||
<li>The X/HTML <code>p</code> element is assigned <code>display: block;</code></li>
|
||||
<li>The X/HTML <code>li</code> element is assigned <code>display: list-item;</code></li>
|
||||
<li>The X/HTML table elements <code>table</code>, <code>tbody</code>,
|
||||
<code>tr</code>, and <code>td</code> are assigned the <code>display</code>
|
||||
values <code>table</code>, <code>table-row-group</code>,
|
||||
<code>table-row</code>, and <code>table-cell</code>, respectively.</li>
|
||||
<li>The device can display the sixteen color values associated with the color
|
||||
keywords <code>black</code>, <code>white</code>, <code>gray</code>,
|
||||
<code>silver</code>, <code>red</code>, <code>green</code>, <code>blue</code>,
|
||||
<code>purple</code>, <code>yellow</code>, <code>orange</code>, <code>teal</code>,
|
||||
<code>fuchsia</code>, <code>maroon</code>, <code>navy</code>, <code>aqua</code>,
|
||||
and <code>lime</code> as distinct colors.</li>
|
||||
<li>The UA is set to print background colors and, if it supports graphics,
|
||||
background images.</li>
|
||||
<li>The UA implements reasonable page-breaking behavior; e.g., it is assumed
|
||||
that UAs will not break at every opportunity, but only near the end of
|
||||
a page unless a page break is forced.</li>
|
||||
<li>The UA implements reasonable line-breaking behavior; e.g., it is assumed
|
||||
that spaces between alphanumeric characters provide line breaking
|
||||
opportunities and that UAs will not break at every opportunity, but only
|
||||
near the end of a line unless a line break is forced.</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="uncommon">Uncommon Assumptions</h2>
|
||||
|
||||
<p>In addition, some of the tests make one or more of the following
|
||||
assumptions:</p>
|
||||
|
||||
<ul>
|
||||
<li>The device is a full-color device.</li>
|
||||
<li>The device has a viewport width of at least 640px (approx).</li>
|
||||
<li>The resolution of the device is 96 CSS pixels per inch.</li>
|
||||
<li>The UA imposes no minimum font size.</li>
|
||||
<li>The 'medium' font-size computes to 16px.</li>
|
||||
<li>The initial value of 'color' is black.</li>
|
||||
<li>The canvas background is white.</li>
|
||||
<li>The user stylesheet is empty (except where indicated by the tests).</li>
|
||||
<li>The device is interactive and uses scroll bars.</li>
|
||||
</ul>
|
||||
|
||||
<p>The tests that need these assumptions to be true have not yet been
|
||||
marked, but it is likely that we will add a way to identify these
|
||||
tests in due course. Tests should avoid relying on these assumptions
|
||||
unless necessary.</p>
|
||||
|
||||
<h2>License</h2>
|
||||
|
||||
<p>This test suite is licensed under both the
|
||||
<a href="http://www.w3.org/Consortium/Legal/2008/04-testsuite-license">W3C
|
||||
Test Suite License</a> and the <a href="http://www.w3.org/Consortium/Legal/2008/03-bsd-license">W3C
|
||||
3-clause BSD License</a>. See W3C Legal's <a href="http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright">explanation
|
||||
of the licenses</a>.</p>
|
||||
|
||||
<h2>Acknowledgements</h2>
|
||||
|
||||
<p>Many thanks to the following for their contributions:</p>
|
||||
<ul>
|
||||
<li>John Foliot</li>
|
||||
<li>Katherine Mancuso</li>
|
||||
<li>Ryan Eilders</li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
133
tests/wpt/css-tests/css-speech-1_dev/index.xht
Normal file
133
tests/wpt/css-tests/css-speech-1_dev/index.xht
Normal file
|
@ -0,0 +1,133 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||
<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</h1>
|
||||
<dt>Test Coordinator:</dt>
|
||||
<dd>None Yet</dd>
|
||||
|
||||
<p>This is a <strong>Development</strong>
|
||||
version of the CSS Speech Module Level 1 CR Test Suite.</p>
|
||||
|
||||
<p>You can provide test data or review the testing results for this test suite:</p>
|
||||
<dt><a href="http://test.csswg.org/harness/suite/css-speech-1_dev">Enter Data</a></dt>
|
||||
<dt><a href="http://test.csswg.org/harness/review/css-speech-1_dev">Review Results</a></dt>
|
||||
|
||||
|
||||
<p>Some tests in the test suite may contain errors.
|
||||
Please check the latest version of the
|
||||
<a href="https://www.w3.org/TR/css3-speech/">CSS Speech 1 specification</a>
|
||||
<strong>and its errata</strong>
|
||||
before assuming a failure is due to an implementation bug and
|
||||
not a test suite bug.</p>
|
||||
|
||||
|
||||
<p>
|
||||
In time we hope to correct all errors and extend this test suite to
|
||||
cover all of CSS Speech 1. Your help is welcome in this effort.
|
||||
The appropriate mailing list for submitting tests and bug reports is
|
||||
<a href="http://lists.w3.org/Archives/Public/public-css-testsuite/">public-css-testsuite@w3.org</a>.
|
||||
More information on the contribution process and test guidelines is
|
||||
available on the <a href="http://wiki.csswg.org/test">wiki
|
||||
page</a>.</p>
|
||||
|
||||
<p>Tests are currently available in these formats:</p>
|
||||
|
||||
<dl>
|
||||
<dt><a href="html/toc.htm">HTML 5</a></dt>
|
||||
<dd>HTML 5 tests sent as <code>text/html</code></dd>
|
||||
<dt><a href="xhtml1/toc.xht">XHTML 1.1</a></dt>
|
||||
<dd>XHTML 1.1 tests sent as <code>application/xhtml+xml</code></dd>
|
||||
|
||||
|
||||
<p>Unless the test instructions explicitly indicate otherwise,
|
||||
any occurrence of red in a test indicates test failure.</p>
|
||||
|
||||
<h2 id="implement">Implementation Reports</h2>
|
||||
<p>An <a href="implementation-report-TEMPLATE.data">implementation report template</a>
|
||||
is available to help with creating implementation reports. See also the
|
||||
<a href="http://lists.w3.org/Archives/Public/public-css-testsuite/2010Aug/0020.html">explanation</a>
|
||||
of its format.</p>
|
||||
|
||||
<h2 id="common">Common Assumptions</h2>
|
||||
|
||||
<p>Most of the test suite makes the following assumptions:</p>
|
||||
<ul>
|
||||
<li>The X/HTML <code>div</code> element is assigned <code>display: block;</code>
|
||||
and no other property declaration.</li>
|
||||
<li>The X/HTML <code>span</code> element is assigned <code>display: inline;</code>
|
||||
and no other property declaration.</li>
|
||||
<li>The X/HTML <code>p</code> element is assigned <code>display: block;</code></li>
|
||||
<li>The X/HTML <code>li</code> element is assigned <code>display: list-item;</code></li>
|
||||
<li>The X/HTML table elements <code>table</code>, <code>tbody</code>,
|
||||
<code>tr</code>, and <code>td</code> are assigned the <code>display</code>
|
||||
values <code>table</code>, <code>table-row-group</code>,
|
||||
<code>table-row</code>, and <code>table-cell</code>, respectively.</li>
|
||||
<li>The device can display the sixteen color values associated with the color
|
||||
keywords <code>black</code>, <code>white</code>, <code>gray</code>,
|
||||
<code>silver</code>, <code>red</code>, <code>green</code>, <code>blue</code>,
|
||||
<code>purple</code>, <code>yellow</code>, <code>orange</code>, <code>teal</code>,
|
||||
<code>fuchsia</code>, <code>maroon</code>, <code>navy</code>, <code>aqua</code>,
|
||||
and <code>lime</code> as distinct colors.</li>
|
||||
<li>The UA is set to print background colors and, if it supports graphics,
|
||||
background images.</li>
|
||||
<li>The UA implements reasonable page-breaking behavior; e.g., it is assumed
|
||||
that UAs will not break at every opportunity, but only near the end of
|
||||
a page unless a page break is forced.</li>
|
||||
<li>The UA implements reasonable line-breaking behavior; e.g., it is assumed
|
||||
that spaces between alphanumeric characters provide line breaking
|
||||
opportunities and that UAs will not break at every opportunity, but only
|
||||
near the end of a line unless a line break is forced.</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="uncommon">Uncommon Assumptions</h2>
|
||||
|
||||
<p>In addition, some of the tests make one or more of the following
|
||||
assumptions:</p>
|
||||
|
||||
<ul>
|
||||
<li>The device is a full-color device.</li>
|
||||
<li>The device has a viewport width of at least 640px (approx).</li>
|
||||
<li>The resolution of the device is 96 CSS pixels per inch.</li>
|
||||
<li>The UA imposes no minimum font size.</li>
|
||||
<li>The 'medium' font-size computes to 16px.</li>
|
||||
<li>The initial value of 'color' is black.</li>
|
||||
<li>The canvas background is white.</li>
|
||||
<li>The user stylesheet is empty (except where indicated by the tests).</li>
|
||||
<li>The device is interactive and uses scroll bars.</li>
|
||||
</ul>
|
||||
|
||||
<p>The tests that need these assumptions to be true have not yet been
|
||||
marked, but it is likely that we will add a way to identify these
|
||||
tests in due course. Tests should avoid relying on these assumptions
|
||||
unless necessary.</p>
|
||||
|
||||
<h2>License</h2>
|
||||
|
||||
<p>This test suite is licensed under both the
|
||||
<a href="http://www.w3.org/Consortium/Legal/2008/04-testsuite-license">W3C
|
||||
Test Suite License</a> and the <a href="http://www.w3.org/Consortium/Legal/2008/03-bsd-license">W3C
|
||||
3-clause BSD License</a>. See W3C Legal's <a href="http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright">explanation
|
||||
of the licenses</a>.</p>
|
||||
|
||||
<h2>Acknowledgements</h2>
|
||||
|
||||
<p>Many thanks to the following for their contributions:</p>
|
||||
<ul>
|
||||
<li>John Foliot</li>
|
||||
<li>Katherine Mancuso</li>
|
||||
<li>Ryan Eilders</li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
96
tests/wpt/css-tests/css-speech-1_dev/indices.css
Normal file
96
tests/wpt/css-tests/css-speech-1_dev/indices.css
Normal file
|
@ -0,0 +1,96 @@
|
|||
/* CSS for CSS Conformance Test Indices */
|
||||
/* Written by fantasai */
|
||||
|
||||
/* Test Tables */
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
thead {
|
||||
border-bottom: 0.2em solid;
|
||||
}
|
||||
|
||||
tbody {
|
||||
border: thin solid;
|
||||
border-style: solid none;
|
||||
}
|
||||
|
||||
tbody.ch {
|
||||
border-top: 0.2em solid;
|
||||
}
|
||||
tbody.ch th {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
tbody th {
|
||||
border-bottom: silver dotted thin;
|
||||
background: #EEE;
|
||||
color: black;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
tbody th :link {
|
||||
color: gray;
|
||||
background: transparent;
|
||||
}
|
||||
tbody th :visited {
|
||||
color: #333;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 0.2em;
|
||||
text-align: left;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
td {
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
/* flags */
|
||||
td abbr {
|
||||
border: solid thin gray;
|
||||
padding: 0 0.1em;
|
||||
cursor: help;
|
||||
}
|
||||
td abbr:hover {
|
||||
background: #ffa;
|
||||
color: black;
|
||||
}
|
||||
|
||||
|
||||
tr:hover {
|
||||
background: #F9F9F9;
|
||||
color: navy;
|
||||
}
|
||||
|
||||
th a,
|
||||
td a {
|
||||
text-decoration: none;
|
||||
}
|
||||
th a:hover,
|
||||
td a:hover,
|
||||
th a:focus,
|
||||
td a:focus {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
td a {
|
||||
display: block;
|
||||
padding-left: 2em;
|
||||
text-indent: -1em;
|
||||
}
|
||||
.refs {
|
||||
font-weight: bold;
|
||||
font-size: larger;
|
||||
}
|
||||
.assert, .assert > li {
|
||||
list-style-type: none;
|
||||
font-style: italic;
|
||||
color: gray;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-indent: 0;
|
||||
}
|
8
tests/wpt/css-tests/css-speech-1_dev/testinfo.data
Normal file
8
tests/wpt/css-tests/css-speech-1_dev/testinfo.data
Normal file
|
@ -0,0 +1,8 @@
|
|||
id references title flags links revision credits assertion
|
||||
age-declarations-001 voice-family age keywords speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family e2daa63e603d15e3ad8893dffb4a2f81c938d18f `John Foliot`<mailto:john@foliot.ca>,`Katherine Mancuso`<mailto:kmancuso@gmail.com>,`Ryan Eilders`<mailto:ryaneilders@gmail.com> The child, young, and old values of voice-family render the text in child, young, and old voices, respectively.
|
||||
age-declarations-female-001 voice-family age keywords + femal speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family d4a9ba1ab92a84e9910bb73fa390c01994b159d5 `John Foliot`<mailto:john@foliot.ca>,`Katherine Mancuso`<mailto:kmancuso@gmail.com>,`Ryan Eilders`<mailto:ryaneilders@gmail.com> The child, young, and old values of voice-family +femal render the text in child, young, and old female voices, respectively.
|
||||
age-declarations-male-001 voice-family age keywords + male speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family 066214f11c8507bf418a0358337005db8bf92e3b `John Foliot`<mailto:john@foliot.ca>,`Katherine Mancuso`<mailto:kmancuso@gmail.com>,`Ryan Eilders`<mailto:ryaneilders@gmail.com> The child, young, and old values of voice-family +male render the text in child, young, and old male voices, respectively.
|
||||
age-declarations-neutral-001 voice-family age keywords + neutral speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family 1bf8b0e0d003c13849ef8634d3481882d4278783 `John Foliot`<mailto:john@foliot.ca>,`Katherine Mancuso`<mailto:kmancuso@gmail.com>,`Ryan Eilders`<mailto:ryaneilders@gmail.com> The child, young, and old values of voice-family + neutral render the text in child, young, and old neutral voices, respectively.
|
||||
generic-gender-declarations-001 voice-family generic gender keywords speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family 27f7803e326ae8be0d0f5915c7d84fa189ac0379 `John Foliot`<mailto:john@foliot.ca> The male, female, and neutral values of voice-family render the text in male, female, and neutral voices, respectively.
|
||||
Integer CSS Speech: Integer Attribute speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family 96cdf795a927e8c66794915c96c07a620a5e0b40 `John Foliot`<mailto:john@foliot.ca>,`Katherine Mancuso`<mailto:kmancuso@gmail.com>,`Ryan Eilders`<mailto:ryaneilders@gmail.com> User has 2 female voices installed on the system
|
||||
no-voice-family-specified-001 voice-family not specified speech http://www.w3.org/TR/css3-speech/#voice-props-voice-family 1eee8d33d36c0e9a19e84fcd0779ef7a9d433fe0 `John Foliot`<mailto:john@foliot.ca> If no voice-family is specified, the user's preferred voice is used.
|
22
tests/wpt/css-tests/css-speech-1_dev/xhtml1/Integer.xht
Normal file
22
tests/wpt/css-tests/css-speech-1_dev/xhtml1/Integer.xht
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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/xhtml1/chapter-1.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-1.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-10.xht
Normal file
60
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-10.xht
Normal file
|
@ -0,0 +1,60 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-11.xht
Normal file
66
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-11.xht
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-12.xht
Normal file
167
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-12.xht
Normal file
|
@ -0,0 +1,167 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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.xht">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.xht">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.xht">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.xht">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.xht">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.xht">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.xht">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/xhtml1/chapter-13.xht
Normal file
48
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-13.xht
Normal file
|
@ -0,0 +1,48 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-14.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-14.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-15.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-15.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-16.xht
Normal file
198
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-16.xht
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-2.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-2.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-3.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-3.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-4.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-4.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-5.xht
Normal file
39
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-5.xht
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-6.xht
Normal file
45
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-6.xht
Normal file
|
@ -0,0 +1,45 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-7.xht
Normal file
57
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-7.xht
Normal file
|
@ -0,0 +1,57 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-8.xht
Normal file
57
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-8.xht
Normal file
|
@ -0,0 +1,57 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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/xhtml1/chapter-9.xht
Normal file
66
tests/wpt/css-tests/css-speech-1_dev/xhtml1/chapter-9.xht
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="refs-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<col id="info-column"></col>
|
||||
<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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><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/xhtml1/reftest-toc.xht
Normal file
30
tests/wpt/css-tests/css-speech-1_dev/xhtml1/reftest-toc.xht
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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>
|
||||
<col id="ref-column"></col>
|
||||
<col id="flags-column"></col>
|
||||
<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/xhtml1/reftest.list
Normal file
1
tests/wpt/css-tests/css-speech-1_dev/xhtml1/reftest.list
Normal file
|
@ -0,0 +1 @@
|
|||
|
104
tests/wpt/css-tests/css-speech-1_dev/xhtml1/toc.xht
Normal file
104
tests/wpt/css-tests/css-speech-1_dev/xhtml1/toc.xht
Normal file
|
@ -0,0 +1,104 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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.xht">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.xht">Chapter 1 -
|
||||
Introduction, design goals</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s2">
|
||||
<tr><th><a href="chapter-2.xht">Chapter 2 -
|
||||
Background information, CSS 2.1</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s3">
|
||||
<tr><th><a href="chapter-3.xht">Chapter 3 -
|
||||
Relationship with SSML</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s4">
|
||||
<tr><th><a href="chapter-4.xht">Chapter 4 -
|
||||
CSS values</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s5">
|
||||
<tr><th><a href="chapter-5.xht">Chapter 5 -
|
||||
Example</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s6">
|
||||
<tr><th><a href="chapter-6.xht">Chapter 6 -
|
||||
The aural formatting model</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s7">
|
||||
<tr><th><a href="chapter-7.xht">Chapter 7 -
|
||||
Mixing properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s8">
|
||||
<tr><th><a href="chapter-8.xht">Chapter 8 -
|
||||
Speaking properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s9">
|
||||
<tr><th><a href="chapter-9.xht">Chapter 9 -
|
||||
Pause properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s10">
|
||||
<tr><th><a href="chapter-10.xht">Chapter 10 -
|
||||
Rest properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s11">
|
||||
<tr><th><a href="chapter-11.xht">Chapter 11 -
|
||||
Cue properties</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s12">
|
||||
<tr><th><a href="chapter-12.xht">Chapter 12 -
|
||||
Voice characteristic properties</a></th>
|
||||
<td>(7 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s13">
|
||||
<tr><th><a href="chapter-13.xht">Chapter 13 -
|
||||
Voice duration property</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s14">
|
||||
<tr><th><a href="chapter-14.xht">Chapter 14 -
|
||||
List items and counters styles</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s15">
|
||||
<tr><th><a href="chapter-15.xht">Chapter 15 -
|
||||
Inserted and replaced content</a></th>
|
||||
<td>(0 Tests)</td></tr>
|
||||
</tbody>
|
||||
<tbody id="s16">
|
||||
<tr><th><a href="chapter-16.xht">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