mirror of
https://github.com/servo/servo.git
synced 2025-08-11 16:35:33 +01:00
Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985
This commit is contained in:
parent
43a4f01647
commit
64e0a52537
12717 changed files with 59835 additions and 59820 deletions
|
@ -0,0 +1,3 @@
|
|||
@r12a
|
||||
@svgeesus
|
||||
@tabatkins
|
|
@ -0,0 +1 @@
|
|||
@r12a
|
|
@ -0,0 +1,2 @@
|
|||
See http://www.w3.org/International/tests/
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>cjk-decimal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: cjk-decimal produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: cjk-decimal; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class='test'><ol>
|
||||
<li title="1">一</li>
|
||||
<li title="2">二</li>
|
||||
<li title="3">三</li>
|
||||
<li title="4">四</li>
|
||||
<li title="5">五</li>
|
||||
<li title="6">六</li>
|
||||
<li title="7">七</li>
|
||||
<li title="8">八</li>
|
||||
<li title="9">九</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,50 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>cjk-decimal, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: cjk-decimal produces numbers after 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: cjk-decimal; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class='test'>
|
||||
<ol start="10"><li title="10">一〇</li></ol>
|
||||
<ol start="11"><li title="11">一一</li></ol>
|
||||
<ol start="12"><li title="12">一二</li></ol>
|
||||
<ol start="43"><li title="43">四三</li></ol>
|
||||
<ol start="77"><li title="77">七七</li></ol>
|
||||
<ol start="80"><li title="80">八〇</li></ol>
|
||||
<ol start="99"><li title="99">九九</li></ol>
|
||||
<ol start="100"><li title="100">一〇〇</li></ol>
|
||||
<ol start="101"><li title="101">一〇一</li></ol>
|
||||
<ol start="222"><li title="222">二二二</li></ol>
|
||||
<ol start="540"><li title="540">五四〇</li></ol>
|
||||
<ol start="999"><li title="999">九九九</li></ol>
|
||||
<ol start="1000"><li title="1000">一〇〇〇</li></ol>
|
||||
<ol start="1005"><li title="1005">一〇〇五</li></ol>
|
||||
<ol start="1060"><li title="1060">一〇六〇</li></ol>
|
||||
<ol start="1065"><li title="1065">一〇六五</li></ol>
|
||||
<ol start="1800"><li title="1800">一八〇〇</li></ol>
|
||||
<ol start="1860"><li title="1860">一八六〇</li></ol>
|
||||
<ol start="5865"><li title="5865">五八六五</li></ol>
|
||||
<ol start="7005"><li title="7005">七〇〇五</li></ol>
|
||||
<ol start="7800"><li title="7800">七八〇〇</li></ol>
|
||||
<ol start="7864"><li title="7864">七八六四</li></ol>
|
||||
<ol start="9999"><li title="9999">九九九九</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>cjk-decimal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: cjk-decimal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: cjk-decimal; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class='test'><ol>
|
||||
<li title="1">一、</li>
|
||||
<li title="2">二、</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>armenian, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: armenian produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: armenian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol>
|
||||
<li title='1'>Ա</li>
|
||||
<li title='2'>Բ</li>
|
||||
<li title='3'>Գ</li>
|
||||
<li title='4'>Դ</li>
|
||||
<li title='5'>Ե</li>
|
||||
<li title='6'>Զ</li>
|
||||
<li title='7'>Է</li>
|
||||
<li title='8'>Ը</li>
|
||||
<li title='9'>Թ</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>armenian, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: armenian produces numbers after 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: armenian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='10'><li title='10'>Ժ</li></ol>
|
||||
<ol start='11'><li title='11'>ԺԱ</li></ol>
|
||||
<ol start='12'><li title='12'>ԺԲ</li></ol>
|
||||
<ol start='43'><li title='43'>ԽԳ</li></ol>
|
||||
<ol start='77'><li title='77'>ՀԷ</li></ol>
|
||||
<ol start='80'><li title='80'>Ձ</li></ol>
|
||||
<ol start='99'><li title='99'>ՂԹ</li></ol>
|
||||
<ol start='100'><li title='100'>Ճ</li></ol>
|
||||
<ol start='101'><li title='101'>ՃԱ</li></ol>
|
||||
<ol start='222'><li title='222'>ՄԻԲ</li></ol>
|
||||
<ol start='540'><li title='540'>ՇԽ</li></ol>
|
||||
<ol start='999'><li title='999'>ՋՂԹ</li></ol>
|
||||
<ol start='1000'><li title='1000'>Ռ</li></ol>
|
||||
<ol start='1005'><li title='1005'>ՌԵ</li></ol>
|
||||
<ol start='1060'><li title='1060'>ՌԿ</li></ol>
|
||||
<ol start='1065'><li title='1065'>ՌԿԵ</li></ol>
|
||||
<ol start='1800'><li title='1800'>ՌՊ</li></ol>
|
||||
<ol start='1860'><li title='1860'>ՌՊԿ</li></ol>
|
||||
<ol start='1865'><li title='1865'>ՌՊԿԵ</li></ol>
|
||||
<ol start='5865'><li title='5865'>ՐՊԿԵ</li></ol>
|
||||
<ol start='7005'><li title='7005'>ՒԵ</li></ol>
|
||||
<ol start='7800'><li title='7800'>ՒՊ</li></ol>
|
||||
<ol start='7865'><li title='7865'>ՒՊԿԵ</li></ol>
|
||||
<ol start='9999'><li title='9999'>ՔՋՂԹ</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>armenian, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: armenian produces counter values outside its ranges using its fallback style.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: armenian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='9999'><li title='9999'>ՔՋՂԹ</li></ol>
|
||||
<ol start='10000'><li title='10000'>10000</li></ol>
|
||||
<ol start='10001'><li title='10001'>10001</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>armenian, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: armenian will produce a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: armenian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class="test"><ol>
|
||||
<li title='1'>Ա.</li>
|
||||
<li title='2'>Բ.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,35 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>georgian, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: georgian produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: georgian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol>
|
||||
<li title="1">ა</li>
|
||||
<li title="2">ბ</li>
|
||||
<li title="3">გ</li>
|
||||
<li title="4">დ</li>
|
||||
<li title="5">ე</li>
|
||||
<li title="6">ვ</li>
|
||||
<li title="7">ზ</li>
|
||||
<li title="8">ჱ</li>
|
||||
<li title="9">თ</li></ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,53 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>georgian, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: georgian produces numbers after 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: georgian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='10'><li title='10'>ი</li></ol>
|
||||
<ol start='11'><li title='11'>ია</li></ol>
|
||||
<ol start='12'><li title='12'>იბ</li></ol>
|
||||
<ol start='43'><li title='43'>მგ</li></ol>
|
||||
<ol start='77'><li title='77'>ოზ</li></ol>
|
||||
<ol start='80'><li title='80'>პ</li></ol>
|
||||
<ol start='99'><li title='99'>ჟთ</li></ol>
|
||||
<ol start='100'><li title='100'>რ</li></ol>
|
||||
<ol start='101'><li title='101'>რა</li></ol>
|
||||
<ol start='222'><li title='222'>სკბ</li></ol>
|
||||
<ol start='540'><li title='540'>ფმ</li></ol>
|
||||
<ol start='999'><li title='999'>შჟთ</li></ol>
|
||||
<ol start='1000'><li title='1000'>ჩ</li></ol>
|
||||
<ol start='1005'><li title='1005'>ჩე</li></ol>
|
||||
<ol start='1060'><li title='1060'>ჩჲ</li></ol>
|
||||
<ol start='1065'><li title='1065'>ჩჲე</li></ol>
|
||||
<ol start='1800'><li title='1800'>ჩყ</li></ol>
|
||||
<ol start='1860'><li title='1860'>ჩყჲ</li></ol>
|
||||
<ol start='1865'><li title='1865'>ჩყჲე</li></ol>
|
||||
<ol start='5865'><li title='5865'>ჭყჲე</li></ol>
|
||||
<ol start='7005'><li title='7005'>ჴე</li></ol>
|
||||
<ol start='7800'><li title='7800'>ჴყ</li></ol>
|
||||
<ol start='7865'><li title='7865'>ჴყჲე</li></ol>
|
||||
<ol start='9999'><li title='9999'>ჰშჟთ</li></ol>
|
||||
<ol start='10000'><li title='10000'>ჵ</li></ol>
|
||||
<ol start='10001'><li title='10001'>ჵა</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>georgian, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: georgian produces numbers in the fallback counter style above the limit per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: georgian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start="19999">
|
||||
<li title="19999">ჵჰშჟთ</li>
|
||||
<li title='20000'>20000</li>
|
||||
<li title='20001'>20001</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>georgian, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: georgian produces a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: georgian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class="test">
|
||||
<ol start='1'><li title='1'>ა.</li></ol>
|
||||
<ol start='2'><li title='2'>ბ.</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hebrew, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: hebrew produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: hebrew; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol>
|
||||
<li title="1">א</li>
|
||||
<li title="2">ב</li>
|
||||
<li title="3">ג</li>
|
||||
<li title="4">ד</li>
|
||||
<li title="5">ה</li>
|
||||
<li title="6">ו</li>
|
||||
<li title="7">ז</li>
|
||||
<li title="8">ח</li>
|
||||
<li title="9">ט</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hebrew, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: hebrew produces numbers after 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: hebrew; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='10'><li title='10'>י</li></ol>
|
||||
<ol start='11'><li title='11'>יא</li></ol>
|
||||
<ol start='12'><li title='12'>יב</li></ol>
|
||||
<ol start='13'><li title='13'>יג</li></ol>
|
||||
<ol start='14'><li title='14'>יד</li></ol>
|
||||
<ol start='15'><li title='15'>טו</li></ol>
|
||||
<ol start='16'><li title='16'>טז</li></ol>
|
||||
<ol start='17'><li title='17'>יז</li></ol>
|
||||
<ol start='18'><li title='18'>יח</li></ol>
|
||||
<ol start='43'><li title='43'>מג</li></ol>
|
||||
<ol start='77'><li title='77'>עז</li></ol>
|
||||
<ol start='80'><li title='80'>פ</li></ol>
|
||||
<ol start='99'><li title='99'>צט</li></ol>
|
||||
<ol start='100'><li title='100'>ק</li></ol>
|
||||
<ol start='101'><li title='101'>קא</li></ol>
|
||||
<ol start='222'><li title='222'>רכב</li></ol>
|
||||
<ol start='400'><li title='400'>ת</li></ol>
|
||||
<ol start='401'><li title='401'>תא</li></ol>
|
||||
<ol start='499'><li title='499'>תצט</li></ol>
|
||||
<ol start='500'><li title='500'>תק</li></ol>
|
||||
<ol start='555'><li title='555'>תקנה</li></ol>
|
||||
<ol start='997'><li title='997'>תתקצז</li></ol>
|
||||
<ol start='1000'><li title='1000'>א׳</li></ol>
|
||||
<ol start='1001'><li title='1001'>א׳א</li></ol>
|
||||
<ol start='3256'><li title='3256'>ג׳רנו</li></ol>
|
||||
<ol start='7998'><li title='7998'>ז׳תתקצח</li></ol>
|
||||
<ol start='9999'><li title='9999'>ט׳תתקצט</li></ol>
|
||||
<ol start='10000'><li title='10000'>י׳</li></ol>
|
||||
<ol start='10997'><li title='10997'>י׳תתקצז</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hebrew, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: hebrew produces numbers in the fallback counter style above the limit per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: hebrew; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start="10999">
|
||||
<li title="10999">י׳תתקצט</li>
|
||||
<li title='11000'>11000</li>
|
||||
<li title='11001'>11001</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hebrew, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: hebrew produces a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: hebrew; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class="test"><ol>
|
||||
<li title="1">א.</li>
|
||||
<li title="2">ב.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-roman, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: lower-roman produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: lower-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol>
|
||||
<li title="1">i</li>
|
||||
<li title="2">ii</li>
|
||||
<li title="3">iii</li>
|
||||
<li title="4">iv</li>
|
||||
<li title="5">v</li>
|
||||
<li title="6">vi</li>
|
||||
<li title="7">vii</li>
|
||||
<li title="8">viii</li>
|
||||
<li title="9">ix</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-roman, 10-3999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: lower-roman produces numbers after 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: lower-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='10'><li title='10'>x</li></ol>
|
||||
<ol start='11'><li title='11'>xi</li></ol>
|
||||
<ol start='12'><li title='12'>xii</li></ol>
|
||||
<ol start='43'><li title='43'>xliii</li></ol>
|
||||
<ol start='77'><li title='77'>lxxvii</li></ol>
|
||||
<ol start='80'><li title='80'>lxxx</li></ol>
|
||||
<ol start='99'><li title='99'>xcix</li></ol>
|
||||
<ol start='100'><li title='100'>c</li></ol>
|
||||
<ol start='101'><li title='101'>ci</li></ol>
|
||||
<ol start='222'><li title='222'>ccxxii</li></ol>
|
||||
<ol start='540'><li title='540'>dxl</li></ol>
|
||||
<ol start='999'><li title='999'>cmxcix</li></ol>
|
||||
<ol start='1000'><li title='1000'>m</li></ol>
|
||||
<ol start='1005'><li title='1005'>mv</li></ol>
|
||||
<ol start='1060'><li title='1060'>mlx</li></ol>
|
||||
<ol start='1065'><li title='1065'>mlxv</li></ol>
|
||||
<ol start='1800'><li title='1800'>mdccc</li></ol>
|
||||
<ol start='1860'><li title='1860'>mdccclx</li></ol>
|
||||
<ol start='1865'><li title='1865'>mdccclxv</li></ol>
|
||||
<ol start='2555'><li title='2555'>mmdlv</li></ol>
|
||||
<ol start='3000'><li title='3000'>mmm</li></ol>
|
||||
<ol start='3999'><li title='3999'>mmmcmxcix</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-roman, 3000-3999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='author' title='Chris Lilley' href='mailto:chris@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to lower-roman will produce list of up to 9 items in the range range: 1 to 3999.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: lower-roman; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='3000'><li title='3000'>mmm.</li></ol>
|
||||
<ol start='3555'><li title='3555'>mmmdlv.</li></ol>
|
||||
<ol start='3998'><li title='3998'>mmmcmxcviii.</li></ol>
|
||||
<ol start='3999'><li title='3999'>mmmcmxcix.</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-roman, straddling range, 3000-4001</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='author' title='Chris Lilley' href='mailto:chris@w3.org'>
|
||||
<link rel="reviewer" title="Tab Atkins" href="mailto:jackalmage@gmail.com" />
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#descdef-counter-style-range'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content=" If a counter style is used to represent a counter value outside of its ranges, the counter style instead drops down to its fallback counter style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: lower-roman; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='3000'><li title='3000'>mmm.</li></ol>
|
||||
<ol start='3555'><li title='3555'>mmmdlv.</li></ol>
|
||||
<ol start='3998'><li title='3998'>mmmcmxcviii.</li></ol>
|
||||
<ol start='3999'><li title='3999'>mmmcmxcix.</li></ol>
|
||||
<ol start='4001'><li title='4001'>4001.</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-roman, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: lower-roman produces numbers in the fallback counter style above the limit per the spec">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: lower-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol start='3999'>
|
||||
<li title='3999'>mmmcmxcix</li>
|
||||
<li title='4000'>4000</li></ol>
|
||||
<ol start='4001'><li title='4001'>4001</li>
|
||||
<li title='4002'>4002</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-roman, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: lower-roman produces a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: lower-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class="test"><ol>
|
||||
<li title='1'>i.</li>
|
||||
<li title='2'>ii.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-roman, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: upper-roman produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: upper-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol>
|
||||
<li title="1">I</li>
|
||||
<li title="2">II</li>
|
||||
<li title="3">III</li>
|
||||
<li title="4">IV</li>
|
||||
<li title="5">V</li>
|
||||
<li title="6">VI</li>
|
||||
<li title="7">VII</li>
|
||||
<li title="8">VIII</li>
|
||||
<li title="9">IX</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-roman, 10-3999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: upper-roman produces numbers after 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: upper-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='10'><li title='10'>X</li></ol>
|
||||
<ol start='11'><li title='11'>XI</li></ol>
|
||||
<ol start='12'><li title='12'>XII</li></ol>
|
||||
<ol start='43'><li title='43'>XLIII</li></ol>
|
||||
<ol start='77'><li title='77'>LXXVII</li></ol>
|
||||
<ol start='80'><li title='80'>LXXX</li></ol>
|
||||
<ol start='99'><li title='99'>XCIX</li></ol>
|
||||
<ol start='100'><li title='100'>C</li></ol>
|
||||
<ol start='101'><li title='101'>CI</li></ol>
|
||||
<ol start='222'><li title='222'>CCXXII</li></ol>
|
||||
<ol start='540'><li title='540'>DXL</li></ol>
|
||||
<ol start='999'><li title='999'>CMXCIX</li></ol>
|
||||
<ol start='1000'><li title='1000'>M</li></ol>
|
||||
<ol start='1005'><li title='1005'>MV</li></ol>
|
||||
<ol start='1060'><li title='1060'>MLX</li></ol>
|
||||
<ol start='1065'><li title='1065'>MLXV</li></ol>
|
||||
<ol start='1800'><li title='1800'>MDCCC</li></ol>
|
||||
<ol start='1860'><li title='1860'>MDCCCLX</li></ol>
|
||||
<ol start='1865'><li title='1865'>MDCCCLXV</li></ol>
|
||||
<ol start='2555'><li title='2555'>MMDLV</li></ol>
|
||||
<ol start='3000'><li title='3000'>MMM</li></ol>
|
||||
<ol start='3999'><li title='3999'>MMMCMXCIX</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-roman, 3000-3999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='author' title='Chris Lilley' href='mailto:chris@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to upper-roman will produce list of up to 9 items in the range range: 1 to 3999.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: upper-roman; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='3000'><li title='3000'>MMM.</li></ol>
|
||||
<ol start='3555'><li title='3555'>MMMDLV.</li></ol>
|
||||
<ol start='3998'><li title='3998'>MMMCMXCVIII.</li></ol>
|
||||
<ol start='3999'><li title='3999'>MMMCMXCIX.</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-roman, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: upper-roman produces numbers in the fallback counter style above the limit per the spec">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: upper-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test"><ol start='3999'>
|
||||
<li title='3999'>MMMCMXCIX</li>
|
||||
<li title='4000'>4000</li></ol>
|
||||
<ol start='4001'><li title='4001'>4001</li>
|
||||
<li title='4002'>4002</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-roman, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: upper-roman produces a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: upper-roman; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class="test"><ol>
|
||||
<li title='1'>I.</li>
|
||||
<li title='2'>II.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-greek, simple</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to lower-greek will produce list numbering for the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: lower-greek; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol><li title='1'>α.</li>
|
||||
<li title='2'>β.</li>
|
||||
<li title='3'>γ.</li>
|
||||
<li title='4'>δ.</li>
|
||||
<li title='5'>ε.</li>
|
||||
<li title='6'>ζ.</li>
|
||||
<li title='7'>η.</li>
|
||||
<li title='8'>θ.</li>
|
||||
<li title='9'>ι.</li>
|
||||
<li title='10'>κ.</li>
|
||||
<li title='11'>λ.</li>
|
||||
<li title='12'>μ.</li>
|
||||
<li title='13'>ν.</li>
|
||||
<li title='14'>ξ.</li>
|
||||
<li title='15'>ο.</li>
|
||||
<li title='16'>π.</li>
|
||||
<li title='17'>ρ.</li>
|
||||
<li title='18'>σ.</li>
|
||||
<li title='19'>τ.</li>
|
||||
<li title='20'>υ.</li>
|
||||
<li title='21'>φ.</li>
|
||||
<li title='22'>χ.</li>
|
||||
<li title='23'>ψ.</li>
|
||||
<li title='24'>ω.</li>
|
||||
</ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,54 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-greek, extended</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to lower-greek will produce list numbering after the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: lower-greek; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='25'><li title='25'>αα.</li></ol>
|
||||
<ol start='26'><li title='26'>αβ.</li></ol>
|
||||
<ol start='43'><li title='43'>ατ.</li></ol>
|
||||
<ol start='77'><li title='77'>γε.</li></ol>
|
||||
<ol start='80'><li title='80'>γθ.</li></ol>
|
||||
<ol start='99'><li title='99'>δγ.</li></ol>
|
||||
<ol start='100'><li title='100'>δδ.</li></ol>
|
||||
<ol start='101'><li title='101'>δε.</li></ol>
|
||||
<ol start='222'><li title='222'>ιζ.</li></ol>
|
||||
<ol start='540'><li title='540'>χμ.</li></ol>
|
||||
<ol start='999'><li title='999'>αρο.</li></ol>
|
||||
<ol start='1000'><li title='1000'>αρπ.</li></ol>
|
||||
<ol start='1005'><li title='1005'>αρφ.</li></ol>
|
||||
<ol start='1060'><li title='1060'>αυδ.</li></ol>
|
||||
<ol start='1065'><li title='1065'>αυι.</li></ol>
|
||||
<ol start='1800'><li title='1800'>γβω.</li></ol>
|
||||
<ol start='1860'><li title='1860'>γεμ.</li></ol>
|
||||
<ol start='5865'><li title='5865'>κδι.</li></ol>
|
||||
<ol start='7005'><li title='7005'>μγφ.</li></ol>
|
||||
<ol start='7800'><li title='7800'>νμω.</li></ol>
|
||||
<ol start='7864'><li title='7864'>νοπ.</li></ol>
|
||||
<ol start='9999'><li title='9999'>ρθο.</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>lower-greek, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to lower-greek will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: lower-greek; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>α.</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,80 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hiragana, simple</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to hiragana will produce list numbering for the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: hiragana; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol><li title='1'>あ、</li>
|
||||
<li title='2'>い、</li>
|
||||
<li title='3'>う、</li>
|
||||
<li title='4'>え、</li>
|
||||
<li title='5'>お、</li>
|
||||
<li title='6'>か、</li>
|
||||
<li title='7'>き、</li>
|
||||
<li title='8'>く、</li>
|
||||
<li title='9'>け、</li>
|
||||
<li title='10'>こ、</li>
|
||||
<li title='11'>さ、</li>
|
||||
<li title='12'>し、</li>
|
||||
<li title='13'>す、</li>
|
||||
<li title='14'>せ、</li>
|
||||
<li title='15'>そ、</li>
|
||||
<li title='16'>た、</li>
|
||||
<li title='17'>ち、</li>
|
||||
<li title='18'>つ、</li>
|
||||
<li title='19'>て、</li>
|
||||
<li title='20'>と、</li>
|
||||
<li title='21'>な、</li>
|
||||
<li title='22'>に、</li>
|
||||
<li title='23'>ぬ、</li>
|
||||
<li title='24'>ね、</li>
|
||||
<li title='25'>の、</li>
|
||||
<li title='26'>は、</li>
|
||||
<li title='27'>ひ、</li>
|
||||
<li title='28'>ふ、</li>
|
||||
<li title='29'>へ、</li>
|
||||
<li title='30'>ほ、</li>
|
||||
<li title='31'>ま、</li>
|
||||
<li title='32'>み、</li>
|
||||
<li title='33'>む、</li>
|
||||
<li title='34'>め、</li>
|
||||
<li title='35'>も、</li>
|
||||
<li title='36'>や、</li>
|
||||
<li title='37'>ゆ、</li>
|
||||
<li title='38'>よ、</li>
|
||||
<li title='39'>ら、</li>
|
||||
<li title='40'>り、</li>
|
||||
<li title='41'>る、</li>
|
||||
<li title='42'>れ、</li>
|
||||
<li title='43'>ろ、</li>
|
||||
<li title='44'>わ、</li>
|
||||
<li title='45'>ゐ、</li>
|
||||
<li title='46'>ゑ、</li>
|
||||
<li title='47'>を、</li>
|
||||
<li title='48'>ん、</li>
|
||||
</ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,54 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hiragana, extended</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to hiragana will produce list numbering after the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: hiragana; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='49'><li title='49'>ああ、</li></ol>
|
||||
<ol start='50'><li title='50'>あい、</li></ol>
|
||||
<ol start='51'><li title='51'>あう、</li></ol>
|
||||
<ol start='77'><li title='77'>あへ、</li></ol>
|
||||
<ol start='80'><li title='80'>あみ、</li></ol>
|
||||
<ol start='99'><li title='99'>いう、</li></ol>
|
||||
<ol start='100'><li title='100'>いえ、</li></ol>
|
||||
<ol start='101'><li title='101'>いお、</li></ol>
|
||||
<ol start='222'><li title='222'>えほ、</li></ol>
|
||||
<ol start='540'><li title='540'>さし、</li></ol>
|
||||
<ol start='999'><li title='999'>とら、</li></ol>
|
||||
<ol start='1000'><li title='1000'>とり、</li></ol>
|
||||
<ol start='1005'><li title='1005'>とゐ、</li></ol>
|
||||
<ol start='1060'><li title='1060'>にえ、</li></ol>
|
||||
<ol start='1065'><li title='1065'>にけ、</li></ol>
|
||||
<ol start='1800'><li title='1800'>ゆね、</li></ol>
|
||||
<ol start='1860'><li title='1860'>よや、</li></ol>
|
||||
<ol start='5865'><li title='5865'>いはけ、</li></ol>
|
||||
<ol start='7005'><li title='7005'>うあゐ、</li></ol>
|
||||
<ol start='7800'><li title='7800'>うつね、</li></ol>
|
||||
<ol start='7864'><li title='7864'>うてり、</li></ol>
|
||||
<ol start='9999'><li title='9999'>えたそ、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hiragana, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to hiragana will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: hiragana; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>あ、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,79 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hiragana-iroha, simple</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to hiragana-iroha will produce list numbering for the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: hiragana-iroha; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol><li title='1'>い、</li>
|
||||
<li title='2'>ろ、</li>
|
||||
<li title='3'>は、</li>
|
||||
<li title='4'>に、</li>
|
||||
<li title='5'>ほ、</li>
|
||||
<li title='6'>へ、</li>
|
||||
<li title='7'>と、</li>
|
||||
<li title='8'>ち、</li>
|
||||
<li title='9'>り、</li>
|
||||
<li title='10'>ぬ、</li>
|
||||
<li title='11'>る、</li>
|
||||
<li title='12'>を、</li>
|
||||
<li title='13'>わ、</li>
|
||||
<li title='14'>か、</li>
|
||||
<li title='15'>よ、</li>
|
||||
<li title='16'>た、</li>
|
||||
<li title='17'>れ、</li>
|
||||
<li title='18'>そ、</li>
|
||||
<li title='19'>つ、</li>
|
||||
<li title='20'>ね、</li>
|
||||
<li title='21'>な、</li>
|
||||
<li title='22'>ら、</li>
|
||||
<li title='23'>む、</li>
|
||||
<li title='24'>う、</li>
|
||||
<li title='25'>ゐ、</li>
|
||||
<li title='26'>の、</li>
|
||||
<li title='27'>お、</li>
|
||||
<li title='28'>く、</li>
|
||||
<li title='29'>や、</li>
|
||||
<li title='30'>ま、</li>
|
||||
<li title='31'>け、</li>
|
||||
<li title='32'>ふ、</li>
|
||||
<li title='33'>こ、</li>
|
||||
<li title='34'>え、</li>
|
||||
<li title='35'>て、</li>
|
||||
<li title='36'>あ、</li>
|
||||
<li title='37'>さ、</li>
|
||||
<li title='38'>き、</li>
|
||||
<li title='39'>ゆ、</li>
|
||||
<li title='40'>め、</li>
|
||||
<li title='41'>み、</li>
|
||||
<li title='42'>し、</li>
|
||||
<li title='43'>ゑ、</li>
|
||||
<li title='44'>ひ、</li>
|
||||
<li title='45'>も、</li>
|
||||
<li title='46'>せ、</li>
|
||||
<li title='47'>す、</li>
|
||||
</ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hiragana-iroha, extended</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to hiragana-iroha will produce list numbering after the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: hiragana-iroha; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='48'><li title='48'>いい、</li></ol>
|
||||
<ol start='77'><li title='77'>いま、</li></ol>
|
||||
<ol start='80'><li title='80'>いこ、</li></ol>
|
||||
<ol start='99'><li title='99'>ろほ、</li></ol>
|
||||
<ol start='100'><li title='100'>ろへ、</li></ol>
|
||||
<ol start='101'><li title='101'>ろと、</li></ol>
|
||||
<ol start='222'><li title='222'>にえ、</li></ol>
|
||||
<ol start='540'><li title='540'>るむ、</li></ol>
|
||||
<ol start='999'><li title='999'>なを、</li></ol>
|
||||
<ol start='1000'><li title='1000'>なわ、</li></ol>
|
||||
<ol start='1005'><li title='1005'>なそ、</li></ol>
|
||||
<ol start='1060'><li title='1060'>らの、</li></ol>
|
||||
<ol start='1065'><li title='1065'>らけ、</li></ol>
|
||||
<ol start='1800'><li title='1800'>きか、</li></ol>
|
||||
<ol start='1860'><li title='1860'>ゆお、</li></ol>
|
||||
<ol start='5865'><li title='5865'>ろまさ、</li></ol>
|
||||
<ol start='7005'><li title='7005'>はちろ、</li></ol>
|
||||
<ol start='7800'><li title='7800'>はうも、</li></ol>
|
||||
<ol start='7864'><li title='7864'>はのよ、</li></ol>
|
||||
<ol start='9999'><li title='9999'>にうて、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>hiragana-iroha, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to hiragana-iroha will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: hiragana-iroha; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>い、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,80 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>katakana, simple</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to katakana will produce list numbering for the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: katakana; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol><li title='1'>ア、</li>
|
||||
<li title='2'>イ、</li>
|
||||
<li title='3'>ウ、</li>
|
||||
<li title='4'>エ、</li>
|
||||
<li title='5'>オ、</li>
|
||||
<li title='6'>カ、</li>
|
||||
<li title='7'>キ、</li>
|
||||
<li title='8'>ク、</li>
|
||||
<li title='9'>ケ、</li>
|
||||
<li title='10'>コ、</li>
|
||||
<li title='11'>サ、</li>
|
||||
<li title='12'>シ、</li>
|
||||
<li title='13'>ス、</li>
|
||||
<li title='14'>セ、</li>
|
||||
<li title='15'>ソ、</li>
|
||||
<li title='16'>タ、</li>
|
||||
<li title='17'>チ、</li>
|
||||
<li title='18'>ツ、</li>
|
||||
<li title='19'>テ、</li>
|
||||
<li title='20'>ト、</li>
|
||||
<li title='21'>ナ、</li>
|
||||
<li title='22'>ニ、</li>
|
||||
<li title='23'>ヌ、</li>
|
||||
<li title='24'>ネ、</li>
|
||||
<li title='25'>ノ、</li>
|
||||
<li title='26'>ハ、</li>
|
||||
<li title='27'>ヒ、</li>
|
||||
<li title='28'>フ、</li>
|
||||
<li title='29'>ヘ、</li>
|
||||
<li title='30'>ホ、</li>
|
||||
<li title='31'>マ、</li>
|
||||
<li title='32'>ミ、</li>
|
||||
<li title='33'>ム、</li>
|
||||
<li title='34'>メ、</li>
|
||||
<li title='35'>モ、</li>
|
||||
<li title='36'>ヤ、</li>
|
||||
<li title='37'>ユ、</li>
|
||||
<li title='38'>ヨ、</li>
|
||||
<li title='39'>ラ、</li>
|
||||
<li title='40'>リ、</li>
|
||||
<li title='41'>ル、</li>
|
||||
<li title='42'>レ、</li>
|
||||
<li title='43'>ロ、</li>
|
||||
<li title='44'>ワ、</li>
|
||||
<li title='45'>ヰ、</li>
|
||||
<li title='46'>ヱ、</li>
|
||||
<li title='47'>ヲ、</li>
|
||||
<li title='48'>ン、</li>
|
||||
</ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,54 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>katakana, extended</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to katakana will produce list numbering after the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: katakana; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='49'><li title='49'>アア、</li></ol>
|
||||
<ol start='50'><li title='50'>アイ、</li></ol>
|
||||
<ol start='51'><li title='51'>アウ、</li></ol>
|
||||
<ol start='77'><li title='77'>アヘ、</li></ol>
|
||||
<ol start='80'><li title='80'>アミ、</li></ol>
|
||||
<ol start='99'><li title='99'>イウ、</li></ol>
|
||||
<ol start='100'><li title='100'>イエ、</li></ol>
|
||||
<ol start='101'><li title='101'>イオ、</li></ol>
|
||||
<ol start='222'><li title='222'>エホ、</li></ol>
|
||||
<ol start='540'><li title='540'>サシ、</li></ol>
|
||||
<ol start='999'><li title='999'>トラ、</li></ol>
|
||||
<ol start='1000'><li title='1000'>トリ、</li></ol>
|
||||
<ol start='1005'><li title='1005'>トヰ、</li></ol>
|
||||
<ol start='1060'><li title='1060'>ニエ、</li></ol>
|
||||
<ol start='1065'><li title='1065'>ニケ、</li></ol>
|
||||
<ol start='1800'><li title='1800'>ユネ、</li></ol>
|
||||
<ol start='1860'><li title='1860'>ヨヤ、</li></ol>
|
||||
<ol start='5865'><li title='5865'>イハケ、</li></ol>
|
||||
<ol start='7005'><li title='7005'>ウアヰ、</li></ol>
|
||||
<ol start='7800'><li title='7800'>ウツネ、</li></ol>
|
||||
<ol start='7864'><li title='7864'>ウテリ、</li></ol>
|
||||
<ol start='9999'><li title='9999'>エタソ、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>katakana, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to katakana will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: katakana; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>ア、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,79 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>katakana-iroha, simple</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to katakana-iroha will produce list numbering for the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: katakana-iroha; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol><li title='1'>イ、</li>
|
||||
<li title='2'>ロ、</li>
|
||||
<li title='3'>ハ、</li>
|
||||
<li title='4'>ニ、</li>
|
||||
<li title='5'>ホ、</li>
|
||||
<li title='6'>ヘ、</li>
|
||||
<li title='7'>ト、</li>
|
||||
<li title='8'>チ、</li>
|
||||
<li title='9'>リ、</li>
|
||||
<li title='10'>ヌ、</li>
|
||||
<li title='11'>ル、</li>
|
||||
<li title='12'>ヲ、</li>
|
||||
<li title='13'>ワ、</li>
|
||||
<li title='14'>カ、</li>
|
||||
<li title='15'>ヨ、</li>
|
||||
<li title='16'>タ、</li>
|
||||
<li title='17'>レ、</li>
|
||||
<li title='18'>ソ、</li>
|
||||
<li title='19'>ツ、</li>
|
||||
<li title='20'>ネ、</li>
|
||||
<li title='21'>ナ、</li>
|
||||
<li title='22'>ラ、</li>
|
||||
<li title='23'>ム、</li>
|
||||
<li title='24'>ウ、</li>
|
||||
<li title='25'>ヰ、</li>
|
||||
<li title='26'>ノ、</li>
|
||||
<li title='27'>オ、</li>
|
||||
<li title='28'>ク、</li>
|
||||
<li title='29'>ヤ、</li>
|
||||
<li title='30'>マ、</li>
|
||||
<li title='31'>ケ、</li>
|
||||
<li title='32'>フ、</li>
|
||||
<li title='33'>コ、</li>
|
||||
<li title='34'>エ、</li>
|
||||
<li title='35'>テ、</li>
|
||||
<li title='36'>ア、</li>
|
||||
<li title='37'>サ、</li>
|
||||
<li title='38'>キ、</li>
|
||||
<li title='39'>ユ、</li>
|
||||
<li title='40'>メ、</li>
|
||||
<li title='41'>ミ、</li>
|
||||
<li title='42'>シ、</li>
|
||||
<li title='43'>ヱ、</li>
|
||||
<li title='44'>ヒ、</li>
|
||||
<li title='45'>モ、</li>
|
||||
<li title='46'>セ、</li>
|
||||
<li title='47'>ス、</li>
|
||||
</ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>katakana-iroha, extended</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to katakana-iroha will produce list numbering after the basic alphabet as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: katakana-iroha; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='48'><li title='48'>イイ、</li></ol>
|
||||
<ol start='77'><li title='77'>イマ、</li></ol>
|
||||
<ol start='80'><li title='80'>イコ、</li></ol>
|
||||
<ol start='99'><li title='99'>ロホ、</li></ol>
|
||||
<ol start='100'><li title='100'>ロヘ、</li></ol>
|
||||
<ol start='101'><li title='101'>ロト、</li></ol>
|
||||
<ol start='222'><li title='222'>ニエ、</li></ol>
|
||||
<ol start='540'><li title='540'>ルム、</li></ol>
|
||||
<ol start='999'><li title='999'>ナヲ、</li></ol>
|
||||
<ol start='1000'><li title='1000'>ナワ、</li></ol>
|
||||
<ol start='1005'><li title='1005'>ナソ、</li></ol>
|
||||
<ol start='1060'><li title='1060'>ラノ、</li></ol>
|
||||
<ol start='1065'><li title='1065'>ラケ、</li></ol>
|
||||
<ol start='1800'><li title='1800'>キカ、</li></ol>
|
||||
<ol start='1860'><li title='1860'>ユオ、</li></ol>
|
||||
<ol start='5865'><li title='5865'>ロマサ、</li></ol>
|
||||
<ol start='7005'><li title='7005'>ハチロ、</li></ol>
|
||||
<ol start='7800'><li title='7800'>ハウモ、</li></ol>
|
||||
<ol start='7864'><li title='7864'>ハノヨ、</li></ol>
|
||||
<ol start='9999'><li title='9999'>ニウテ、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>katakana-iroha, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to katakana-iroha will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: katakana-iroha; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>イ、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-informal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to japanese-informal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>〇、</li></ol>
|
||||
<ol start='1'><li title='1'>一、</li></ol>
|
||||
<ol start='2'><li title='2'>二、</li></ol>
|
||||
<ol start='3'><li title='3'>三、</li></ol>
|
||||
<ol start='4'><li title='4'>四、</li></ol>
|
||||
<ol start='5'><li title='5'>五、</li></ol>
|
||||
<ol start='6'><li title='6'>六、</li></ol>
|
||||
<ol start='7'><li title='7'>七、</li></ol>
|
||||
<ol start='8'><li title='8'>八、</li></ol>
|
||||
<ol start='9'><li title='9'>九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-informal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to japanese-informal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>十、</li></ol>
|
||||
<ol start='11'><li title='11'>十一、</li></ol>
|
||||
<ol start='12'><li title='12'>十二、</li></ol>
|
||||
<ol start='43'><li title='43'>四十三、</li></ol>
|
||||
<ol start='77'><li title='77'>七十七、</li></ol>
|
||||
<ol start='80'><li title='80'>八十、</li></ol>
|
||||
<ol start='99'><li title='99'>九十九、</li></ol>
|
||||
<ol start='100'><li title='100'>百、</li></ol>
|
||||
<ol start='101'><li title='101'>百一、</li></ol>
|
||||
<ol start='222'><li title='222'>二百二十二、</li></ol>
|
||||
<ol start='540'><li title='540'>五百四十、</li></ol>
|
||||
<ol start='999'><li title='999'>九百九十九、</li></ol>
|
||||
<ol start='1000'><li title='1000'>千、</li></ol>
|
||||
<ol start='1005'><li title='1005'>千五、</li></ol>
|
||||
<ol start='1060'><li title='1060'>千六十、</li></ol>
|
||||
<ol start='1065'><li title='1065'>千六十五、</li></ol>
|
||||
<ol start='1800'><li title='1800'>千八百、</li></ol>
|
||||
<ol start='1860'><li title='1860'>千八百六十、</li></ol>
|
||||
<ol start='1865'><li title='1865'>千八百六十五、</li></ol>
|
||||
<ol start='5865'><li title='5865'>五千八百六十五、</li></ol>
|
||||
<ol start='7005'><li title='7005'>七千五、</li></ol>
|
||||
<ol start='7800'><li title='7800'>七千八百、</li></ol>
|
||||
<ol start='7865'><li title='7865'>七千八百六十五、</li></ol>
|
||||
<ol start='9999'><li title='9999'>九千九百九十九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-informal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: japanese-informal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: japanese-informal; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits and is NOT the same as the right side. Score as Partial if the columns of the 2nd and 3rd lines are the same (ie. fallback was used). In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">九千九百九十九</li>
|
||||
<li title="10000">一〇〇〇〇</li>
|
||||
<li title="10001">一〇〇〇一</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-informal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to japanese-informal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">マイナス十一、</li><li title="-10">マイナス十、</li><li title="-9">マイナス九、</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-informal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to japanese-informal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>一、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-formal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to japanese-formal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零、</li></ol>
|
||||
<ol start='1'><li title='1'>壱、</li></ol>
|
||||
<ol start='2'><li title='2'>弐、</li></ol>
|
||||
<ol start='3'><li title='3'>参、</li></ol>
|
||||
<ol start='4'><li title='4'>四、</li></ol>
|
||||
<ol start='5'><li title='5'>伍、</li></ol>
|
||||
<ol start='6'><li title='6'>六、</li></ol>
|
||||
<ol start='7'><li title='7'>七、</li></ol>
|
||||
<ol start='8'><li title='8'>八、</li></ol>
|
||||
<ol start='9'><li title='9'>九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-formal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to japanese-formal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>壱拾、</li></ol>
|
||||
<ol start='11'><li title='11'>壱拾壱、</li></ol>
|
||||
<ol start='12'><li title='12'>壱拾弐、</li></ol>
|
||||
<ol start='43'><li title='43'>四拾参、</li></ol>
|
||||
<ol start='77'><li title='77'>七拾七、</li></ol>
|
||||
<ol start='80'><li title='80'>八拾、</li></ol>
|
||||
<ol start='99'><li title='99'>九拾九、</li></ol>
|
||||
<ol start='100'><li title='100'>壱百、</li></ol>
|
||||
<ol start='101'><li title='101'>壱百壱、</li></ol>
|
||||
<ol start='222'><li title='222'>弐百弐拾弐、</li></ol>
|
||||
<ol start='540'><li title='540'>伍百四拾、</li></ol>
|
||||
<ol start='999'><li title='999'>九百九拾九、</li></ol>
|
||||
<ol start='1000'><li title='1000'>壱阡、</li></ol>
|
||||
<ol start='1005'><li title='1005'>壱阡伍、</li></ol>
|
||||
<ol start='1060'><li title='1060'>壱阡六拾、</li></ol>
|
||||
<ol start='1065'><li title='1065'>壱阡六拾伍、</li></ol>
|
||||
<ol start='1800'><li title='1800'>壱阡八百、</li></ol>
|
||||
<ol start='1860'><li title='1860'>壱阡八百六拾、</li></ol>
|
||||
<ol start='1865'><li title='1865'>壱阡八百六拾伍、</li></ol>
|
||||
<ol start='5865'><li title='5865'>伍阡八百六拾伍、</li></ol>
|
||||
<ol start='7005'><li title='7005'>七阡伍、</li></ol>
|
||||
<ol start='7800'><li title='7800'>七阡八百、</li></ol>
|
||||
<ol start='7865'><li title='7865'>七阡八百六拾伍、</li></ol>
|
||||
<ol start='9999'><li title='9999'>九阡九百九拾九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-formal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: japanese-formal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits and is NOT the same as the right side. Score as Partial if the columns of the 2nd and 3rd lines are the same (ie. fallback was used). In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">九阡九百九拾九</li>
|
||||
<li title="10000">一〇〇〇〇</li>
|
||||
<li title="10001">一〇〇〇一</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-formal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to japanese-formal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">マイナス壱拾壱、</li><li title="-10">マイナス壱拾、</li><li title="-9">マイナス九、</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>japanese-formal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to japanese-formal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: japanese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>壱、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hangul-formal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hangul-formal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hangul-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>영,</li></ol>
|
||||
<ol start='1'><li title='1'>일,</li></ol>
|
||||
<ol start='2'><li title='2'>이,</li></ol>
|
||||
<ol start='3'><li title='3'>삼,</li></ol>
|
||||
<ol start='4'><li title='4'>사,</li></ol>
|
||||
<ol start='5'><li title='5'>오,</li></ol>
|
||||
<ol start='6'><li title='6'>육,</li></ol>
|
||||
<ol start='7'><li title='7'>칠,</li></ol>
|
||||
<ol start='8'><li title='8'>팔,</li></ol>
|
||||
<ol start='9'><li title='9'>구,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hangul-formal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hangul-formal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hangul-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>일십,</li></ol>
|
||||
<ol start='11'><li title='11'>일십일,</li></ol>
|
||||
<ol start='12'><li title='12'>일십이,</li></ol>
|
||||
<ol start='43'><li title='43'>사십삼,</li></ol>
|
||||
<ol start='77'><li title='77'>칠십칠,</li></ol>
|
||||
<ol start='80'><li title='80'>팔십,</li></ol>
|
||||
<ol start='99'><li title='99'>구십구,</li></ol>
|
||||
<ol start='100'><li title='100'>일백,</li></ol>
|
||||
<ol start='101'><li title='101'>일백일,</li></ol>
|
||||
<ol start='222'><li title='222'>이백이십이,</li></ol>
|
||||
<ol start='540'><li title='540'>오백사십,</li></ol>
|
||||
<ol start='999'><li title='999'>구백구십구,</li></ol>
|
||||
<ol start='1000'><li title='1000'>일천,</li></ol>
|
||||
<ol start='1005'><li title='1005'>일천오,</li></ol>
|
||||
<ol start='1060'><li title='1060'>일천육십,</li></ol>
|
||||
<ol start='1065'><li title='1065'>일천육십오,</li></ol>
|
||||
<ol start='1800'><li title='1800'>일천팔백,</li></ol>
|
||||
<ol start='1860'><li title='1860'>일천팔백육십,</li></ol>
|
||||
<ol start='1865'><li title='1865'>일천팔백육십오,</li></ol>
|
||||
<ol start='5865'><li title='5865'>오천팔백육십오,</li></ol>
|
||||
<ol start='7005'><li title='7005'>칠천오,</li></ol>
|
||||
<ol start='7800'><li title='7800'>칠천팔백,</li></ol>
|
||||
<ol start='7865'><li title='7865'>칠천팔백육십오,</li></ol>
|
||||
<ol start='9999'><li title='9999'>구천구백구십구,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hangul-formal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: korean-hangul-formal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hangul-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits. If it is decimal digits (ie. the fallback) score as Partial. In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">구천구백구십구</li>
|
||||
<li title="10000">10000.</li>
|
||||
<li title="10001">10001.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hangul-formal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to korean-hangul-formal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hangul-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">마이너스 일십일,</li><li title="-10">마이너스 일십,</li><li title="-9">마이너스 구,</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hangul-formal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hangul-formal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hangul-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>일,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-informal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hanja-informal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零,</li></ol>
|
||||
<ol start='1'><li title='1'>一,</li></ol>
|
||||
<ol start='2'><li title='2'>二,</li></ol>
|
||||
<ol start='3'><li title='3'>三,</li></ol>
|
||||
<ol start='4'><li title='4'>四,</li></ol>
|
||||
<ol start='5'><li title='5'>五,</li></ol>
|
||||
<ol start='6'><li title='6'>六,</li></ol>
|
||||
<ol start='7'><li title='7'>七,</li></ol>
|
||||
<ol start='8'><li title='8'>八,</li></ol>
|
||||
<ol start='9'><li title='9'>九,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-informal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hanja-informal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>十,</li></ol>
|
||||
<ol start='11'><li title='11'>十一,</li></ol>
|
||||
<ol start='12'><li title='12'>十二,</li></ol>
|
||||
<ol start='43'><li title='43'>四十三,</li></ol>
|
||||
<ol start='77'><li title='77'>七十七,</li></ol>
|
||||
<ol start='80'><li title='80'>八十,</li></ol>
|
||||
<ol start='99'><li title='99'>九十九,</li></ol>
|
||||
<ol start='100'><li title='100'>百,</li></ol>
|
||||
<ol start='101'><li title='101'>百一,</li></ol>
|
||||
<ol start='222'><li title='222'>二百二十二,</li></ol>
|
||||
<ol start='540'><li title='540'>五百四十,</li></ol>
|
||||
<ol start='999'><li title='999'>九百九十九,</li></ol>
|
||||
<ol start='1000'><li title='1000'>千,</li></ol>
|
||||
<ol start='1005'><li title='1005'>千五,</li></ol>
|
||||
<ol start='1060'><li title='1060'>千六十,</li></ol>
|
||||
<ol start='1065'><li title='1065'>千六十五,</li></ol>
|
||||
<ol start='1800'><li title='1800'>千八百,</li></ol>
|
||||
<ol start='1860'><li title='1860'>千八百六十,</li></ol>
|
||||
<ol start='1865'><li title='1865'>千八百六十五,</li></ol>
|
||||
<ol start='5865'><li title='5865'>五千八百六十五,</li></ol>
|
||||
<ol start='7005'><li title='7005'>七千五,</li></ol>
|
||||
<ol start='7800'><li title='7800'>七千八百,</li></ol>
|
||||
<ol start='7865'><li title='7865'>七千八百六十五,</li></ol>
|
||||
<ol start='9999'><li title='9999'>九千九百九十九,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-informal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: korean-hanja-informal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits. If it is decimal digits (ie. the fallback) score as Partial. In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">九千九百九十九</li>
|
||||
<li title="10000">10000.</li>
|
||||
<li title="10001">10001.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-informal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to korean-hanja-informal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">마이너스 十一,</li><li title="-10">마이너스 十,</li><li title="-9">마이너스 九,</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-informal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hanja-informal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>一,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-formal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hanja-formal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零,</li></ol>
|
||||
<ol start='1'><li title='1'>壹,</li></ol>
|
||||
<ol start='2'><li title='2'>貳,</li></ol>
|
||||
<ol start='3'><li title='3'>參,</li></ol>
|
||||
<ol start='4'><li title='4'>四,</li></ol>
|
||||
<ol start='5'><li title='5'>五,</li></ol>
|
||||
<ol start='6'><li title='6'>六,</li></ol>
|
||||
<ol start='7'><li title='7'>七,</li></ol>
|
||||
<ol start='8'><li title='8'>八,</li></ol>
|
||||
<ol start='9'><li title='9'>九,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-formal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hanja-formal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>壹拾,</li></ol>
|
||||
<ol start='11'><li title='11'>壹拾壹,</li></ol>
|
||||
<ol start='12'><li title='12'>壹拾貳,</li></ol>
|
||||
<ol start='43'><li title='43'>四拾參,</li></ol>
|
||||
<ol start='77'><li title='77'>七拾七,</li></ol>
|
||||
<ol start='80'><li title='80'>八拾,</li></ol>
|
||||
<ol start='99'><li title='99'>九拾九,</li></ol>
|
||||
<ol start='100'><li title='100'>壹百,</li></ol>
|
||||
<ol start='101'><li title='101'>壹百壹,</li></ol>
|
||||
<ol start='222'><li title='222'>貳百貳拾貳,</li></ol>
|
||||
<ol start='540'><li title='540'>五百四拾,</li></ol>
|
||||
<ol start='999'><li title='999'>九百九拾九,</li></ol>
|
||||
<ol start='1000'><li title='1000'>壹仟,</li></ol>
|
||||
<ol start='1005'><li title='1005'>壹仟五,</li></ol>
|
||||
<ol start='1060'><li title='1060'>壹仟六拾,</li></ol>
|
||||
<ol start='1065'><li title='1065'>壹仟六拾五,</li></ol>
|
||||
<ol start='1800'><li title='1800'>壹仟八百,</li></ol>
|
||||
<ol start='1860'><li title='1860'>壹仟八百六拾,</li></ol>
|
||||
<ol start='1865'><li title='1865'>壹仟八百六拾五,</li></ol>
|
||||
<ol start='5865'><li title='5865'>五仟八百六拾五,</li></ol>
|
||||
<ol start='7005'><li title='7005'>七仟五,</li></ol>
|
||||
<ol start='7800'><li title='7800'>七仟八百,</li></ol>
|
||||
<ol start='7865'><li title='7865'>七仟八百六拾五,</li></ol>
|
||||
<ol start='9999'><li title='9999'>九仟九百九拾九,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-formal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: korean-hanja-formal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits. If it is decimal digits (ie. the fallback) score as Partial. In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">九仟九百九拾九</li>
|
||||
<li title="10000">10000.</li>
|
||||
<li title="10001">10001.</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-formal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to korean-hanja-formal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">마이너스 壹拾壹,</li><li title="-10">마이너스 壹拾,</li><li title="-9">마이너스 九,</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>korean-hanja-formal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to korean-hanja-formal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: korean-hanja-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>壹,</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>ethiopic-numeric, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#ethiopic-numeric-counter-style'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to ethiopic-numeric will produce numbering for a list of up to 9 items as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: ethiopic-numeric; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class='test'><ol>
|
||||
<li title='1'>፩.</li>
|
||||
<li title='2'>፪.</li>
|
||||
<li title='3'>፫.</li>
|
||||
<li title='4'>፬.</li>
|
||||
<li title='5'>፭.</li>
|
||||
<li title='6'>፮.</li>
|
||||
<li title='7'>፯.</li>
|
||||
<li title='8'>፰.</li>
|
||||
<li title='9'>፱.</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,110 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>ethiopic-numeric, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#ethiopic-numeric-counter-style'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to ethiopic-numeric will produce numbering for a list of items over 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: ethiopic-numeric; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class='test'><ol start='10'>
|
||||
<li title='10'>፲.</li>
|
||||
<li title='11'>፲፩.</li>
|
||||
<li title='12'>፲፪.</li>
|
||||
</ol>
|
||||
|
||||
<ol start='43'>
|
||||
<li title='43'>፵፫.</li>
|
||||
</ol>
|
||||
<ol start='77'>
|
||||
<li title='77'>፸፯.</li>
|
||||
</ol>
|
||||
<ol start='80'>
|
||||
|
||||
<li title='80'>፹.</li>
|
||||
</ol>
|
||||
<ol start='99'>
|
||||
<li title='99'>፺፱.</li>
|
||||
<li title='100'>፻.</li>
|
||||
<li title='101'>፻፩.</li>
|
||||
|
||||
</ol>
|
||||
<ol start='222'>
|
||||
<li title='222'>፪፻፳፪.</li>
|
||||
</ol>
|
||||
<ol start='540'>
|
||||
<li title='540'>፭፻፵.</li>
|
||||
</ol>
|
||||
|
||||
<ol start='999'>
|
||||
<li title='999'>፱፻፺፱.</li>
|
||||
<li title='1000'>፲፻.</li>
|
||||
</ol>
|
||||
<ol start='1005'>
|
||||
<li title='1005'>፲፻፭.</li>
|
||||
|
||||
</ol>
|
||||
<ol start='1060'>
|
||||
<li title='1060'>፲፻፷.</li>
|
||||
</ol>
|
||||
<ol start='1065'>
|
||||
<li title='1065'>፲፻፷፭.</li>
|
||||
</ol>
|
||||
|
||||
<ol start='1800'>
|
||||
<li title='1800'>፲፰፻.</li>
|
||||
</ol>
|
||||
<ol start='1860'>
|
||||
<li title='1860'>፲፰፻፷.</li>
|
||||
</ol>
|
||||
<ol start='1865'>
|
||||
|
||||
<li title='1865'>፲፰፻፷፭.</li>
|
||||
</ol>
|
||||
<ol start='5865'>
|
||||
<li title='5865'>፶፰፻፷፭.</li>
|
||||
</ol>
|
||||
<ol start='7005'>
|
||||
<li title='7005'>፸፻፭.</li>
|
||||
|
||||
</ol>
|
||||
<ol start='7800'>
|
||||
<li title='7800'>፸፰፻.</li>
|
||||
</ol>
|
||||
<ol start='7864'>
|
||||
<li title='7864'>፸፰፻፷፬.</li>
|
||||
</ol>
|
||||
|
||||
<ol start='9999'>
|
||||
<li title='9999'>፺፱፻፺፱.</li>
|
||||
<li title='10000'>፼.</li>
|
||||
</ol>
|
||||
<ol start='78010092'>
|
||||
<li title='78010092'>፸፰፻፩፼፺፪.</li>
|
||||
</ol>
|
||||
<ol start='1000001'>
|
||||
<li title='1000001'>፻፼፩.</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>ethiopic-numeric, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#ethiopic-numeric-counter-style'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to ethiopic-numeric will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: ethiopic-numeric; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class='test'>
|
||||
<ol start='1'>
|
||||
<li title='1'>፩/ </li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-informal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to simp-chinese-informal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零、</li></ol>
|
||||
<ol start='1'><li title='1'>一、</li></ol>
|
||||
<ol start='2'><li title='2'>二、</li></ol>
|
||||
<ol start='3'><li title='3'>三、</li></ol>
|
||||
<ol start='4'><li title='4'>四、</li></ol>
|
||||
<ol start='5'><li title='5'>五、</li></ol>
|
||||
<ol start='6'><li title='6'>六、</li></ol>
|
||||
<ol start='7'><li title='7'>七、</li></ol>
|
||||
<ol start='8'><li title='8'>八、</li></ol>
|
||||
<ol start='9'><li title='9'>九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-informal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to simp-chinese-informal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>十、</li></ol>
|
||||
<ol start='11'><li title='11'>十一、</li></ol>
|
||||
<ol start='12'><li title='12'>十二、</li></ol>
|
||||
<ol start='43'><li title='43'>四十三、</li></ol>
|
||||
<ol start='77'><li title='77'>七十七、</li></ol>
|
||||
<ol start='80'><li title='80'>八十、</li></ol>
|
||||
<ol start='99'><li title='99'>九十九、</li></ol>
|
||||
<ol start='100'><li title='100'>一百、</li></ol>
|
||||
<ol start='101'><li title='101'>一百零一、</li></ol>
|
||||
<ol start='222'><li title='222'>二百二十二、</li></ol>
|
||||
<ol start='540'><li title='540'>五百四十、</li></ol>
|
||||
<ol start='999'><li title='999'>九百九十九、</li></ol>
|
||||
<ol start='1000'><li title='1000'>一千、</li></ol>
|
||||
<ol start='1005'><li title='1005'>一千零五、</li></ol>
|
||||
<ol start='1060'><li title='1060'>一千零六十、</li></ol>
|
||||
<ol start='1065'><li title='1065'>一千零六十五、</li></ol>
|
||||
<ol start='1800'><li title='1800'>一千八百、</li></ol>
|
||||
<ol start='1860'><li title='1860'>一千八百六十、</li></ol>
|
||||
<ol start='1865'><li title='1865'>一千八百六十五、</li></ol>
|
||||
<ol start='5865'><li title='5865'>五千八百六十五、</li></ol>
|
||||
<ol start='7005'><li title='7005'>七千零五、</li></ol>
|
||||
<ol start='7800'><li title='7800'>七千八百、</li></ol>
|
||||
<ol start='7865'><li title='7865'>七千八百六十五、</li></ol>
|
||||
<ol start='9999'><li title='9999'>九千九百九十九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-informal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: simp-chinese-informal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits and is NOT the same as the right side. Score as Partial if the columns of the 2nd and 3rd lines are the same (ie. fallback was used). In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">九千九百九十九</li>
|
||||
<li title="10000">一〇〇〇〇</li>
|
||||
<li title="10001">一〇〇〇一</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-informal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to simp-chinese-informal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">负十一、</li><li title="-10">负十、</li><li title="-9">负九、</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-informal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to simp-chinese-informal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>一、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-formal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to simp-chinese-formal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零、</li></ol>
|
||||
<ol start='1'><li title='1'>壹、</li></ol>
|
||||
<ol start='2'><li title='2'>贰、</li></ol>
|
||||
<ol start='3'><li title='3'>叁、</li></ol>
|
||||
<ol start='4'><li title='4'>肆、</li></ol>
|
||||
<ol start='5'><li title='5'>伍、</li></ol>
|
||||
<ol start='6'><li title='6'>陆、</li></ol>
|
||||
<ol start='7'><li title='7'>柒、</li></ol>
|
||||
<ol start='8'><li title='8'>捌、</li></ol>
|
||||
<ol start='9'><li title='9'>玖、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-formal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to simp-chinese-formal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>壹拾、</li></ol>
|
||||
<ol start='11'><li title='11'>壹拾壹、</li></ol>
|
||||
<ol start='12'><li title='12'>壹拾贰、</li></ol>
|
||||
<ol start='43'><li title='43'>肆拾叁、</li></ol>
|
||||
<ol start='77'><li title='77'>柒拾柒、</li></ol>
|
||||
<ol start='80'><li title='80'>捌拾、</li></ol>
|
||||
<ol start='99'><li title='99'>玖拾玖、</li></ol>
|
||||
<ol start='100'><li title='100'>壹佰、</li></ol>
|
||||
<ol start='101'><li title='101'>壹佰零壹、</li></ol>
|
||||
<ol start='222'><li title='222'>贰佰贰拾贰、</li></ol>
|
||||
<ol start='540'><li title='540'>伍佰肆拾、</li></ol>
|
||||
<ol start='999'><li title='999'>玖佰玖拾玖、</li></ol>
|
||||
<ol start='1000'><li title='1000'>壹仟、</li></ol>
|
||||
<ol start='1005'><li title='1005'>壹仟零伍、</li></ol>
|
||||
<ol start='1060'><li title='1060'>壹仟零陆拾、</li></ol>
|
||||
<ol start='1065'><li title='1065'>壹仟零陆拾伍、</li></ol>
|
||||
<ol start='1800'><li title='1800'>壹仟捌佰、</li></ol>
|
||||
<ol start='1860'><li title='1860'>壹仟捌佰陆拾、</li></ol>
|
||||
<ol start='1865'><li title='1865'>壹仟捌佰陆拾伍、</li></ol>
|
||||
<ol start='5865'><li title='5865'>伍仟捌佰陆拾伍、</li></ol>
|
||||
<ol start='7005'><li title='7005'>柒仟零伍、</li></ol>
|
||||
<ol start='7800'><li title='7800'>柒仟捌佰、</li></ol>
|
||||
<ol start='7865'><li title='7865'>柒仟捌佰陆拾伍、</li></ol>
|
||||
<ol start='9999'><li title='9999'>玖仟玖佰玖拾玖、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-formal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: simp-chinese-formal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits and is NOT the same as the right side. Score as Partial if the columns of the 2nd and 3rd lines are the same (ie. fallback was used). In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">玖仟玖佰玖拾玖</li>
|
||||
<li title="10000">一〇〇〇〇</li>
|
||||
<li title="10001">一〇〇〇一</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-formal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to simp-chinese-formal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">负壹拾壹、</li><li title="-10">负壹拾、</li><li title="-9">负玖、</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>simp-chinese-formal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to simp-chinese-formal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: simp-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>壹、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-informal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to trad-chinese-informal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零、</li></ol>
|
||||
<ol start='1'><li title='1'>一、</li></ol>
|
||||
<ol start='2'><li title='2'>二、</li></ol>
|
||||
<ol start='3'><li title='3'>三、</li></ol>
|
||||
<ol start='4'><li title='4'>四、</li></ol>
|
||||
<ol start='5'><li title='5'>五、</li></ol>
|
||||
<ol start='6'><li title='6'>六、</li></ol>
|
||||
<ol start='7'><li title='7'>七、</li></ol>
|
||||
<ol start='8'><li title='8'>八、</li></ol>
|
||||
<ol start='9'><li title='9'>九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-informal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to trad-chinese-informal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>十、</li></ol>
|
||||
<ol start='11'><li title='11'>十一、</li></ol>
|
||||
<ol start='12'><li title='12'>十二、</li></ol>
|
||||
<ol start='43'><li title='43'>四十三、</li></ol>
|
||||
<ol start='77'><li title='77'>七十七、</li></ol>
|
||||
<ol start='80'><li title='80'>八十、</li></ol>
|
||||
<ol start='99'><li title='99'>九十九、</li></ol>
|
||||
<ol start='100'><li title='100'>一百、</li></ol>
|
||||
<ol start='101'><li title='101'>一百零一、</li></ol>
|
||||
<ol start='222'><li title='222'>二百二十二、</li></ol>
|
||||
<ol start='540'><li title='540'>五百四十、</li></ol>
|
||||
<ol start='999'><li title='999'>九百九十九、</li></ol>
|
||||
<ol start='1000'><li title='1000'>一千、</li></ol>
|
||||
<ol start='1005'><li title='1005'>一千零五、</li></ol>
|
||||
<ol start='1060'><li title='1060'>一千零六十、</li></ol>
|
||||
<ol start='1065'><li title='1065'>一千零六十五、</li></ol>
|
||||
<ol start='1800'><li title='1800'>一千八百、</li></ol>
|
||||
<ol start='1860'><li title='1860'>一千八百六十、</li></ol>
|
||||
<ol start='1865'><li title='1865'>一千八百六十五、</li></ol>
|
||||
<ol start='5865'><li title='5865'>五千八百六十五、</li></ol>
|
||||
<ol start='7005'><li title='7005'>七千零五、</li></ol>
|
||||
<ol start='7800'><li title='7800'>七千八百、</li></ol>
|
||||
<ol start='7865'><li title='7865'>七千八百六十五、</li></ol>
|
||||
<ol start='9999'><li title='9999'>九千九百九十九、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-informal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: trad-chinese-informal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits and is NOT the same as the right side. Score as Partial if the columns of the 2nd and 3rd lines are the same (ie. fallback was used). In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">九千九百九十九</li>
|
||||
<li title="10000">一〇〇〇〇</li>
|
||||
<li title="10001">一〇〇〇一</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-informal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to trad-chinese-informal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">負十一、</li><li title="-10">負十、</li><li title="-9">負九、</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-informal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to trad-chinese-informal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-informal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>一、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-formal, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to trad-chinese-formal will produce list of up to 9 items numbering as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='0'><li title='0'>零、</li></ol>
|
||||
<ol start='1'><li title='1'>壹、</li></ol>
|
||||
<ol start='2'><li title='2'>貳、</li></ol>
|
||||
<ol start='3'><li title='3'>參、</li></ol>
|
||||
<ol start='4'><li title='4'>肆、</li></ol>
|
||||
<ol start='5'><li title='5'>伍、</li></ol>
|
||||
<ol start='6'><li title='6'>陸、</li></ol>
|
||||
<ol start='7'><li title='7'>柒、</li></ol>
|
||||
<ol start='8'><li title='8'>捌、</li></ol>
|
||||
<ol start='9'><li title='9'>玖、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-formal, 10-9999</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to trad-chinese-formal will produce list numbering after 9 as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='10'><li title='10'>壹拾、</li></ol>
|
||||
<ol start='11'><li title='11'>壹拾壹、</li></ol>
|
||||
<ol start='12'><li title='12'>壹拾貳、</li></ol>
|
||||
<ol start='43'><li title='43'>肆拾參、</li></ol>
|
||||
<ol start='77'><li title='77'>柒拾柒、</li></ol>
|
||||
<ol start='80'><li title='80'>捌拾、</li></ol>
|
||||
<ol start='99'><li title='99'>玖拾玖、</li></ol>
|
||||
<ol start='100'><li title='100'>壹佰、</li></ol>
|
||||
<ol start='101'><li title='101'>壹佰零壹、</li></ol>
|
||||
<ol start='222'><li title='222'>貳佰貳拾貳、</li></ol>
|
||||
<ol start='540'><li title='540'>伍佰肆拾、</li></ol>
|
||||
<ol start='999'><li title='999'>玖佰玖拾玖、</li></ol>
|
||||
<ol start='1000'><li title='1000'>壹仟、</li></ol>
|
||||
<ol start='1005'><li title='1005'>壹仟零伍、</li></ol>
|
||||
<ol start='1060'><li title='1060'>壹仟零陸拾、</li></ol>
|
||||
<ol start='1065'><li title='1065'>壹仟零陸拾伍、</li></ol>
|
||||
<ol start='1800'><li title='1800'>壹仟捌佰、</li></ol>
|
||||
<ol start='1860'><li title='1860'>壹仟捌佰陸拾、</li></ol>
|
||||
<ol start='1865'><li title='1865'>壹仟捌佰陸拾伍、</li></ol>
|
||||
<ol start='5865'><li title='5865'>伍仟捌佰陸拾伍、</li></ol>
|
||||
<ol start='7005'><li title='7005'>柒仟零伍、</li></ol>
|
||||
<ol start='7800'><li title='7800'>柒仟捌佰、</li></ol>
|
||||
<ol start='7865'><li title='7865'>柒仟捌佰陸拾伍、</li></ol>
|
||||
<ol start='9999'><li title='9999'>玖仟玖佰玖拾玖、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-formal, outside range</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="[Exploratory] list-style-type: trad-chinese-formal produces counter values outside its range without using the prescribed fallback style.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test fails if the two columns of the first line are NOT the same. Otherwise, test passes only if the left column of the 2nd and 3rd lines is NOT decimal digits and is NOT the same as the right side. Score as Partial if the columns of the 2nd and 3rd lines are the same (ie. fallback was used). In all this IGNORE the suffix.</p>
|
||||
<div class="test"><ol start="9999">
|
||||
<li title="9999">玖仟玖佰玖拾玖</li>
|
||||
<li title="10000">一〇〇〇〇</li>
|
||||
<li title="10001">一〇〇〇一</li>
|
||||
</ol></div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-formal, negative</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="With list-style-type set to trad-chinese-formal, negative list markers will be rendered according to the rules described.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start="-11"><li title="-11">負壹拾壹、</li><li title="-10">負壹拾、</li><li title="-9">負玖、</li></ol></div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>trad-chinese-formal, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'>
|
||||
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="Setting list-style-type to trad-chinese-formal will produce a suffix as described in the CSS3 Counter Styles module.">
|
||||
<style type='text/css'>
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
ol li { list-style-type: trad-chinese-formal; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
|
||||
|
||||
<div class="test"><ol start='1'><li title='1'>壹、</li></ol>
|
||||
</div>
|
||||
|
||||
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>arabic-indic, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: arabic-indic produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: arabic-indic; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class='test'><ol>
|
||||
<li title='1'>١</li>
|
||||
<li title='2'>٢</li>
|
||||
<li title='3'>٣</li>
|
||||
<li title='4'>٤</li>
|
||||
<li title='5'>٥</li>
|
||||
<li title='6'>٦</li>
|
||||
<li title='7'>٧</li>
|
||||
<li title='8'>٨</li>
|
||||
<li title='9'>٩</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,89 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>arabic-indic, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: arabic-indic produces numbers after 9 per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: arabic-indic; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class='test'>
|
||||
<ol start='10'>
|
||||
<li title='10'>١٠</li>
|
||||
<li title='11'>١١</li>
|
||||
<li title='12'>١٢</li>
|
||||
</ol>
|
||||
<ol start='43'>
|
||||
<li title='43'>٤٣</li>
|
||||
</ol>
|
||||
<ol start='77'>
|
||||
<li title='77'>٧٧</li>
|
||||
</ol>
|
||||
<ol start='80'>
|
||||
<li title='80'>٨٠</li>
|
||||
</ol>
|
||||
<ol start='99'>
|
||||
<li title='99'>٩٩</li>
|
||||
<li title='100'>١٠٠</li>
|
||||
<li title='101'>١٠١</li>
|
||||
</ol>
|
||||
<ol start='222'>
|
||||
<li title='222'>٢٢٢</li>
|
||||
</ol>
|
||||
<ol start='540'>
|
||||
<li title='540'>٥٤٠</li>
|
||||
</ol>
|
||||
<ol start='999'>
|
||||
<li title='999'>٩٩٩</li>
|
||||
<li title='1000'>١٠٠٠</li>
|
||||
</ol>
|
||||
<ol start='1005'>
|
||||
<li title='1005'>١٠٠٥</li>
|
||||
</ol>
|
||||
<ol start='1060'>
|
||||
<li title='1060'>١٠٦٠</li>
|
||||
</ol>
|
||||
<ol start='1065'>
|
||||
<li title='1065'>١٠٦٥</li>
|
||||
</ol>
|
||||
<ol start='1800'>
|
||||
<li title='1800'>١٨٠٠</li>
|
||||
</ol>
|
||||
<ol start='1860'>
|
||||
<li title='1860'>١٨٦٠</li>
|
||||
</ol>
|
||||
<ol start='1865'>
|
||||
<li title='1865'>١٨٦٥</li>
|
||||
</ol>
|
||||
<ol start='5865'>
|
||||
<li title='5865'>٥٨٦٥</li>
|
||||
</ol>
|
||||
<ol start='7005'>
|
||||
<li title='7005'>٧٠٠٥</li>
|
||||
</ol>
|
||||
<ol start='7800'>
|
||||
<li title='7800'>٧٨٠٠</li>
|
||||
</ol>
|
||||
<ol start='7864'>
|
||||
<li title='7864'>٧٨٦٤</li>
|
||||
</ol>
|
||||
<ol start='9999'>
|
||||
<li title='9999'>٩٩٩٩</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
The test relies on the start attribute working.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>arabic-indic, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: arabic-indic produces a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: arabic-indic; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class='test'><ol>
|
||||
<li title='1'>١.</li>
|
||||
<li title='2'>٢.</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>persian, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style: persian produces numbers up to 9 items per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: persian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class='test'>
|
||||
<ol>
|
||||
<li title='1'>۱</li>
|
||||
<li title='2'>۲</li>
|
||||
<li title='3'>۳</li>
|
||||
<li title='4'>۴</li>
|
||||
<li title='5'>۵</li>
|
||||
<li title='6'>۶</li>
|
||||
<li title='7'>۷</li>
|
||||
<li title='8'>۸</li>
|
||||
<li title='9'>۹</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,89 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>persian, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: persian produces numbers after 9 per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: persian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class='test'>
|
||||
<ol start='10'>
|
||||
<li title='10'>۱۰</li>
|
||||
<li title='11'>۱۱</li>
|
||||
<li title='12'>۱۲</li>
|
||||
</ol>
|
||||
<ol start='43'>
|
||||
<li title='43'>۴۳</li>
|
||||
</ol>
|
||||
<ol start='77'>
|
||||
<li title='77'>۷۷</li>
|
||||
</ol>
|
||||
<ol start='80'>
|
||||
<li title='80'>۸۰</li>
|
||||
</ol>
|
||||
<ol start='99'>
|
||||
<li title='99'>۹۹</li>
|
||||
<li title='100'>۱۰۰</li>
|
||||
<li title='101'>۱۰۱</li>
|
||||
</ol>
|
||||
<ol start='222'>
|
||||
<li title='222'>۲۲۲</li>
|
||||
</ol>
|
||||
<ol start='540'>
|
||||
<li title='540'>۵۴۰</li>
|
||||
</ol>
|
||||
<ol start='999'>
|
||||
<li title='999'>۹۹۹</li>
|
||||
<li title='1000'>۱۰۰۰</li>
|
||||
</ol>
|
||||
<ol start='1005'>
|
||||
<li title='1005'>۱۰۰۵</li>
|
||||
</ol>
|
||||
<ol start='1060'>
|
||||
<li title='1060'>۱۰۶۰</li>
|
||||
</ol>
|
||||
<ol start='1065'>
|
||||
<li title='1065'>۱۰۶۵</li>
|
||||
</ol>
|
||||
<ol start='1800'>
|
||||
<li title='1800'>۱۸۰۰</li>
|
||||
</ol>
|
||||
<ol start='1860'>
|
||||
<li title='1860'>۱۸۶۰</li>
|
||||
</ol>
|
||||
<ol start='1865'>
|
||||
<li title='1865'>۱۸۶۵</li>
|
||||
</ol>
|
||||
<ol start='5865'>
|
||||
<li title='5865'>۵۸۶۵</li>
|
||||
</ol>
|
||||
<ol start='7005'>
|
||||
<li title='7005'>۷۰۰۵</li>
|
||||
</ol>
|
||||
<ol start='7800'>
|
||||
<li title='7800'>۷۸۰۰ </li>
|
||||
</ol>
|
||||
<ol start='7864'>
|
||||
<li title='7864'>۷۸۶۴</li>
|
||||
</ol>
|
||||
<ol start='9999'>
|
||||
<li title='9999'>۹۹۹۹</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
The test relies on the start attribute working.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>persian, suffix</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: persian produces a suffix per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: persian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the numbers AND the suffix in each of the two columns is the same.</p>
|
||||
<div class='test'><ol>
|
||||
<li title='1'>۱.</li>
|
||||
<li title='2'>۲.</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-armenian, 0-9</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: upper-armenian produces numbers up to 9 per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: upper-armenian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol>
|
||||
<li title='1'>Ա</li>
|
||||
<li title='2'>Բ</li>
|
||||
<li title='3'>Գ</li>
|
||||
<li title='4'>Դ</li>
|
||||
<li title='5'>Ե</li>
|
||||
<li title='6'>Զ</li>
|
||||
<li title='7'>Է</li>
|
||||
<li title='8'>Ը</li>
|
||||
<li title='9'>Թ</li>
|
||||
</ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>upper-armenian, 10+</title>
|
||||
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
||||
<link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-numeric'>
|
||||
<meta name='flags' content='font'>
|
||||
<meta name="assert" content="list-style-type: upper-armenian produces numbers after 9 per the spec.">
|
||||
<style type='text/css'>
|
||||
ol li { list-style-type: upper-armenian; }
|
||||
/* the following CSS is not part of the test */
|
||||
.test { font-size: 25px; }
|
||||
ol { margin: 0; padding-left: 8em; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
|
||||
<div class="test">
|
||||
<ol start='10'><li title='10'>Ժ</li></ol>
|
||||
<ol start='11'><li title='11'>ԺԱ</li></ol>
|
||||
<ol start='12'><li title='12'>ԺԲ</li></ol>
|
||||
<ol start='43'><li title='43'>ԽԳ</li></ol>
|
||||
<ol start='77'><li title='77'>ՀԷ</li></ol>
|
||||
<ol start='80'><li title='80'>Ձ</li></ol>
|
||||
<ol start='99'><li title='99'>ՂԹ</li></ol>
|
||||
<ol start='100'><li title='100'>Ճ</li></ol>
|
||||
<ol start='101'><li title='101'>ՃԱ</li></ol>
|
||||
<ol start='222'><li title='222'>ՄԻԲ</li></ol>
|
||||
<ol start='540'><li title='540'>ՇԽ</li></ol>
|
||||
<ol start='999'><li title='999'>ՋՂԹ</li></ol>
|
||||
<ol start='1000'><li title='1000'>Ռ</li></ol>
|
||||
<ol start='1005'><li title='1005'>ՌԵ</li></ol>
|
||||
<ol start='1060'><li title='1060'>ՌԿ</li></ol>
|
||||
<ol start='1065'><li title='1065'>ՌԿԵ</li></ol>
|
||||
<ol start='1800'><li title='1800'>ՌՊ</li></ol>
|
||||
<ol start='1860'><li title='1860'>ՌՊԿ</li></ol>
|
||||
<ol start='1865'><li title='1865'>ՌՊԿԵ</li></ol>
|
||||
<ol start='5865'><li title='5865'>ՐՊԿԵ</li></ol>
|
||||
<ol start='7005'><li title='7005'>ՒԵ</li></ol>
|
||||
<ol start='7800'><li title='7800'>ՒՊ</li></ol>
|
||||
<ol start='7865'><li title='7865'>ՒՊԿԵ</li></ol>
|
||||
<ol start='9999'><li title='9999'>ՔՋՂԹ</li></ol>
|
||||
</div>
|
||||
<!--Notes:
|
||||
You will need an appropriate font to run this test.
|
||||
The test relies on the start attribute working.
|
||||
To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue