mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
This commit is contained in:
parent
fb4f421c8b
commit
296fa2512b
21852 changed files with 2080936 additions and 892894 deletions
|
@ -0,0 +1,45 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Test Reference</title>
|
||||
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura" />
|
||||
<link href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" rel="author" title="Gérard Talbot" />
|
||||
<meta content="asis" name="flags" />
|
||||
<style>
|
||||
div
|
||||
{
|
||||
font-size: 64px;
|
||||
}
|
||||
|
||||
div > p
|
||||
{
|
||||
border: black solid 1px;
|
||||
}
|
||||
|
||||
span.full-width
|
||||
{
|
||||
text-transform: full-width;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Test passes if the glyphs in the 3 rectangles have the <strong>same order</strong>, the <strong>same orientation</strong> and the <strong>same layout</strong>; a different inter-character spacing is considered as PASS.</p>
|
||||
|
||||
<div>
|
||||
|
||||
<p><span class="full-width">28</span>日</p>
|
||||
|
||||
<p>28日</p>
|
||||
|
||||
<!-- 2 is the FULLWIDTH DIGIT 2 (≈ <wide> 0032 2)-->
|
||||
|
||||
<!-- 8 is the FULLWIDTH DIGIT 8 (≈ <wide> 0038 8)-->
|
||||
|
||||
<p>28日</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Test Reference</title>
|
||||
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura" />
|
||||
<link href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" rel="author" title="Gérard Talbot" />
|
||||
<meta content="asis" name="flags" />
|
||||
<style>
|
||||
div
|
||||
{
|
||||
font-size: 64px;
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
|
||||
div > p
|
||||
{
|
||||
border: black solid 1px;
|
||||
}
|
||||
|
||||
span.full-width
|
||||
{
|
||||
text-transform: full-width;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Test passes if the glyphs in the 3 rectangles have the <strong>same order</strong>, the <strong>same orientation</strong> and the <strong>same layout</strong>; a different inter-character spacing is considered as PASS.</p>
|
||||
|
||||
<div>
|
||||
|
||||
<p><span class="full-width">28</span>日</p>
|
||||
|
||||
<p>28日</p>
|
||||
|
||||
<!-- 2 is the FULLWIDTH DIGIT 2 (≈ <wide> 0032 2)-->
|
||||
|
||||
<!-- 8 is the FULLWIDTH DIGIT 8 (≈ <wide> 0038 8)-->
|
||||
|
||||
<p>28日</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
|
@ -1,18 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Test Reference</title>
|
||||
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Test passes if the following paragraphs are identical:</p>
|
||||
|
||||
<div>
|
||||
<p>6月19日</p>
|
||||
<p>6月19日</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
|
@ -1,23 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Test Reference</title>
|
||||
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura" />
|
||||
<style>
|
||||
.test {
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Test passes if the following paragraphs are identical:</p>
|
||||
|
||||
<div class="test">
|
||||
<p>6月19日</p>
|
||||
<p>6月19日</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
|
@ -1,27 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Test Reference</title>
|
||||
<link href="http://google.com/+MasatakaYakura" rel="author" title="Masataka Yakura" />
|
||||
<style>
|
||||
.test {
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
|
||||
.tcu-all {
|
||||
text-combine-upright: all;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Test passes if the following paragraphs are identical:</p>
|
||||
|
||||
<div class="test">
|
||||
<p>6月<span class="tcu-all">19</span>日</p>
|
||||
<p>6月<span class="tcu-all">19</span>日</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body></html>
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Text Test: overflow-wrap: break-word with fit-content</title>
|
||||
<link href="kojiishi@gmail.com" rel="author" title="Koji Ishii" />
|
||||
<link href="mailto:kojiishi@gmail.com" rel="author" title="Koji Ishii" />
|
||||
<style>
|
||||
.test {
|
||||
display: inline-block;
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Text 4.1.2. Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { line-height: 1; font-family: ahem; } </style>
|
||||
</head>
|
||||
<body>
|
||||
<div>Test passes if there is <b>no</b> white space between 2nd and 3rd CJK character.
|
||||
<!--Some Chinese-->
|
||||
<p>一些中文</p>
|
||||
<!--Some Chinese-->
|
||||
<p>一些中文</p>
|
||||
<!--Some Chinese-->
|
||||
<p>一些中文</p>
|
||||
<!--Some Hangul-->
|
||||
<p>一些언문</p>
|
||||
</div>
|
||||
|
||||
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>FULLWIDTHFULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>FULLWIDTHテスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>FULLWIDTH測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>FULLWIDTH narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>FULLWIDTH ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>FULLWIDTH آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>FULLWIDTH 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>テストFULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>テストテスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>テスト測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>テスト narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>テスト ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>テスト آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>テスト 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>測試FULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>測試テスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is NO white space between the two strings below.
|
||||
<p>測試測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>測試 narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>測試 ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>測試 آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>測試 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow FULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow テスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow 測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>narrow 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ FULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ テスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ 測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>■ 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون FULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون テスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون 測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>آزمون 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 FULLWIDTH</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 テスト</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 測試</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 narrow</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 ■</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 آزمون</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head><body><div>Pass if there is ONE white space between the two strings below.
|
||||
<p>테스트 테스트</p>
|
||||
</div>
|
||||
</body></html>
|
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS Text 4.1.2. Segment Break Transformation Rules</title>
|
||||
<link href="mailto:jeremychen@mozilla.com" rel="author" title="Chun-Min (Jeremy) Chen" />
|
||||
<link href="https://www.mozilla.org" rel="author" title="Mozilla" />
|
||||
<link href="support/ahem.css" type="text/css" rel="stylesheet" />
|
||||
<style> p { font-family: ahem; } </style>
|
||||
</head>
|
||||
<body>
|
||||
<div>Test passes if there is <b>one</b> white space between 2nd and 3rd CJK character.
|
||||
<!--Some Hangul-->
|
||||
<p>一些 언문</p>
|
||||
</div>
|
||||
|
||||
|
||||
</body></html>
|
|
@ -1,4 +0,0 @@
|
|||
<Files ~ "^at-charset-00[1-6].css$">
|
||||
AddCharset Shift_JIS .css
|
||||
</Files>
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
#!/usr/bin/env python
|
||||
# - * - coding: UTF-8 - * -
|
||||
|
||||
"""
|
||||
This script generates tests segment-break-transformation-rules-001 ~ 049 which
|
||||
cover all possible combinations of characters at two sides of segment breaks.
|
||||
More specifically, there are seven types of characters involve in these rules:
|
||||
|
||||
1. East Asian Full-width (F)
|
||||
2. East Asian Half-width (H)
|
||||
3. East Asian Wide (W) except Hangul
|
||||
4. East Asian Narrow (Na)
|
||||
5. East Asian Ambiguous (A)
|
||||
6. Not East Asian (Neutral)
|
||||
7. Hangul
|
||||
|
||||
So there are 49 different combinations. It outputs a list of all
|
||||
tests it generated in the format of Mozilla reftest.list to the stdout.
|
||||
"""
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
TEST_FILE = 'segment-break-transformation-rules-{:03}.html'
|
||||
TEST_TEMPLATE = '''<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reftest Test: Segment Break Transformation Rules</title>
|
||||
<link rel="author" title="Chun-Min (Jeremy) Chen" href="mailto:jeremychen@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#line-break-transform">
|
||||
<meta name="assert" content="'segment-break-transformation-rules: with {prev}/{next} in front/back of the semgment break.">
|
||||
<link rel="stylesheet" type="text/css" href="support/ahem.css" />
|
||||
<link rel="match" href="segment-break-transformation-rules-{index:03}-ref.html">
|
||||
<style> p {{ font-family: ahem; }} </style>
|
||||
<div>Pass if there is {expect} white space between the two strings below.
|
||||
<p>{prevchar}
{nextchar}</p>
|
||||
</div>
|
||||
'''
|
||||
|
||||
REF_FILE = 'segment-break-transformation-rules-{:03}-ref.html'
|
||||
REF_TEMPLATE_REMOVE = '''<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link rel="author" title="Chun-Min (Jeremy) Chen" href="mailto:jeremychen@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="stylesheet" type="text/css" href="support/ahem.css" />
|
||||
<style> p {{ font-family: ahem; }} </style>
|
||||
<div>Pass if there is NO white space between the two strings below.
|
||||
<p>{0}{1}</p>
|
||||
</div>
|
||||
'''
|
||||
REF_TEMPLATE_KEEP = '''<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reftest Reference: Segment Break Transformation Rules</title>
|
||||
<link rel="author" title="Chun-Min (Jeremy) Chen" href="mailto:jeremychen@mozilla.com">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="stylesheet" type="text/css" href="support/ahem.css" />
|
||||
<style> p {{ font-family: ahem; }} </style>
|
||||
<div>Pass if there is ONE white space between the two strings below.
|
||||
<p>{0}{2}{1}</p>
|
||||
</div>
|
||||
'''
|
||||
|
||||
CHAR_SET = [
|
||||
('East Asian Full-width (F)', 'FULLWIDTH'),
|
||||
('East Asian Half-width (H)', 'テスト'),
|
||||
('East Asian Wide (W) except Hangul', '測試'),
|
||||
('East Asian Narrow (Na)', 'narrow'),
|
||||
('East Asian Ambiguous (A)', '■'),
|
||||
('Not East Asian (Neutral)', 'آزمون'),
|
||||
('Hangul', '테스트'),
|
||||
]
|
||||
|
||||
def write_file(filename, content):
|
||||
with open(filename, 'wb') as f:
|
||||
f.write(content.encode('UTF-8'))
|
||||
|
||||
print("# START tests from {}".format(__file__))
|
||||
global idx
|
||||
idx = 0
|
||||
for i, (prevtype, prevchars) in enumerate(CHAR_SET):
|
||||
for j, (nextype, nextchars) in enumerate(CHAR_SET):
|
||||
idx += 1
|
||||
reffilename = REF_FILE.format(idx)
|
||||
testfilename = TEST_FILE.format(idx)
|
||||
# According to CSS Text 3 - 4.1.2. Segment Break Transformation Rules,
|
||||
# if the East Asian Width property of both the character before and
|
||||
# after the segment break is F, W, or H (not A), and neither side is
|
||||
# Hangul, then the segment break is removed. Otherwise, the segment
|
||||
# break is converted to a space (U+0020).
|
||||
if i < 3 and j < 3:
|
||||
write_file(reffilename,
|
||||
REF_TEMPLATE_REMOVE.format(prevchars, nextchars))
|
||||
write_file(testfilename,
|
||||
TEST_TEMPLATE.format(index=idx, prev=prevtype,
|
||||
next=nextype,
|
||||
prevchar=prevchars,
|
||||
nextchar=nextchars,
|
||||
expect='NO'))
|
||||
else:
|
||||
write_file(reffilename,
|
||||
REF_TEMPLATE_KEEP.format(prevchars, nextchars, ' '))
|
||||
write_file(testfilename,
|
||||
TEST_TEMPLATE.format(index=idx, prev=prevtype,
|
||||
next=nextype,
|
||||
prevchar=prevchars,
|
||||
nextchar=nextchars,
|
||||
expect='ONE'))
|
||||
print("== {} {}".format(testfilename, reffilename))
|
||||
print("# END tests from {}".format(__file__))
|
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 5 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>CSS Text Test: tab-size: 4</title>
|
||||
<link href="david@openweb.io" rel="author" title="David Storey" />
|
||||
<link href="mailto:david@openweb.io" rel="author" title="David Storey" />
|
||||
<style type="text/css">
|
||||
.container {
|
||||
position: absolute;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>CSS Text Test: tab-size: length</title>
|
||||
<link href="david@openweb.io" rel="author" title="David Storey" />
|
||||
<link href="mailto:david@openweb.io" rel="author" title="David Storey" />
|
||||
<style type="text/css">
|
||||
.container {
|
||||
position: absolute;
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS3 Text, text transform: capitalize, initial punctuation</title>
|
||||
<link href="mailto:ishida@w3.org" rel="author" title="Richard Ishida" />
|
||||
<style type="text/css">
|
||||
.test, .ref { font-size: 36px; font-family: 'Doulos SIL', 'Noto Serif', 'Noto Sans', sans-serif; border: 1px solid orange; margin: 10px; padding: 5px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the orange boxes are identical.</p>
|
||||
<div class="test">({[-–"«'.<?!Transform</div>
|
||||
<div class="ref">({[-–"«'.<?!Transform</div>
|
||||
|
||||
</body></html>
|
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
|
||||
<title>CSS Reference Test</title>
|
||||
<style type="text/css">
|
||||
@page { font: italic 8pt sans-serif; color: gray;
|
||||
margin: 7%;
|
||||
counter-increment: page;
|
||||
@top-left { content: "CSS Text Module Level 3 CR Test Suite"; }
|
||||
@top-right { content: "Test text-transform-fullwidth-002-ref"; }
|
||||
@bottom-right { content: counter(page); }
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
||||
|
||||
<meta content="" name="flags" />
|
||||
|
||||
<meta name="DC.date.created" content="2017-01-11T09:54:03+11:00" scheme="W3CDTF" />
|
||||
<meta name="DC.date.modified" content="2017-01-12T09:54:03+11:00" scheme="W3CDTF" />
|
||||
|
||||
<style type="text/css"><![CDATA[
|
||||
div
|
||||
{
|
||||
font-size: 32px;
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<p>Test passes if the "Text sample" characters are translated upright and not rotated toward the righthand side.</p>
|
||||
|
||||
<div>Text sample</div>
|
||||
|
||||
<!--
|
||||
T = U+FF34 is the FULLWIDTH LATIN CAPITAL LETTER T
|
||||
e = U+FF45 is the FULLWIDTH LATIN SMALL LETTER E
|
||||
x = U+FF58 is the FULLWIDTH LATIN SMALL LETTER X
|
||||
t = U+FF54 is the FULLWIDTH LATIN SMALL LETTER T
|
||||
|
||||
U+3000 is the fullwidth space character
|
||||
|
||||
s = U+FF53 is the FULLWIDTH LATIN SMALL LETTER S
|
||||
a = U+FF41 is the FULLWIDTH LATIN SMALL LETTER A
|
||||
m = U+FF4D is the FULLWIDTH LATIN SMALL LETTER M
|
||||
p = U+FF50 is the FULLWIDTH LATIN SMALL LETTER P
|
||||
l = U+FF4C is the FULLWIDTH LATIN SMALL LETTER L
|
||||
e = U+FF45 is the FULLWIDTH LATIN SMALL LETTER E
|
||||
|
||||
Halfwidth and Fullwidth Forms
|
||||
Range: FF00–FFEF
|
||||
http://www.unicode.org/charts/PDF/UFF00.pdf
|
||||
-->
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta charset="utf-8" />
|
||||
<title>CSS3 Text, text transform: uppercase, Greek dialytika</title>
|
||||
<link href="mailto:ishida@w3.org" rel="author" title="Richard Ishida" />
|
||||
<style type="text/css">
|
||||
.test, .ref { font-size: 36px; font-family: 'Gentium Plus', 'Noto Serif', 'Noto Sans', webfont, sans-serif; border: 1px solid orange; margin: 10px; width: 200px; padding: 5px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if the orange boxes are identical.</p>
|
||||
<div lang="el" class="test">ΘΕΪΚΟ</div>
|
||||
<div class="ref">ΘΕΪΚΟ</div>
|
||||
|
||||
</body></html>
|
|
@ -16,7 +16,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if both characters in each pair match. If you are missing a font glyph for a character, ignore that pair, but report which characters were ignored.</p>
|
||||
<div class="test"><span title="U+0100">ā ā</span> <span title="U+0102">ă ă</span> <span title="U+0104">ą ą</span> <span title="U+0106">ć ć</span> <span title="U+0108">ĉ ĉ</span> <span title="U+010A">ċ ċ</span> <span title="U+010C">č č</span> <span title="U+010E">ď ď</span> <span title="U+0110">đ đ</span> <span title="U+0112">ē ē</span> <span title="U+0114">ĕ ĕ</span> <span title="U+0116">ė ė</span> <span title="U+0118">ę ę</span> <span title="U+011A">ě ě</span> <span title="U+011C">ĝ ĝ</span> <span title="U+011E">ğ ğ</span> <span title="U+0120">ġ ġ</span> <span title="U+0122">ģ ģ</span> <span title="U+0124">ĥ ĥ</span> <span title="U+0126">ħ ħ</span> <span title="U+0128">ĩ ĩ</span> <span title="U+012A">ī ī</span> <span title="U+012C">ĭ ĭ</span> <span title="U+012E">į į</span> <span title="U+0049">I I</span> <span title="U+0132">ij ij</span> <span title="U+0134">ĵ ĵ</span> <span title="U+0136">ķ ķ</span> <span title="U+0139">ĺ ĺ</span> <span title="U+013B">ļ ļ</span> <span title="U+013D">ľ ľ</span> <span title="U+013F">ŀ ŀ</span> <span title="U+0141">ł ł</span> <span title="U+0143">ń ń</span> <span title="U+0145">ņ ņ</span> <span title="U+0147">ň ň</span> <span title="U+014A">ŋ ŋ</span> <span title="U+014C">ō ō</span> <span title="U+014E">ŏ ŏ</span> <span title="U+0150">ő ő</span> <span title="U+0152">œ œ</span> <span title="U+0154">ŕ ŕ</span> <span title="U+0156">ŗ ŗ</span> <span title="U+0158">ř ř</span> <span title="U+015A">ś ś</span> <span title="U+015C">ŝ ŝ</span> <span title="U+015E">ş ş</span> <span title="U+0160">š š</span> <span title="U+0162">ţ ţ</span> <span title="U+0164">ť ť</span> <span title="U+0166">ŧ ŧ</span> <span title="U+0168">ũ ũ</span> <span title="U+016A">ū ū</span> <span title="U+016C">ŭ ŭ</span> <span title="U+016E">ů ů</span> <span title="U+0170">ű ű</span> <span title="U+0172">ų ų</span> <span title="U+0174">ŵ ŵ</span> <span title="U+0176">ŷ ŷ</span> <span title="U+0178">ÿ ÿ</span> <span title="U+0179">ź ź</span> <span title="U+017B">ż ż</span> <span title="U+017D">ž ž</span></div>
|
||||
<div class="test"><span title="U+0100">ā ā</span> <span title="U+0102">ă ă</span> <span title="U+0104">ą ą</span> <span title="U+0106">ć ć</span> <span title="U+0108">ĉ ĉ</span> <span title="U+010A">ċ ċ</span> <span title="U+010C">č č</span> <span title="U+010E">ď ď</span> <span title="U+0110">đ đ</span> <span title="U+0112">ē ē</span> <span title="U+0114">ĕ ĕ</span> <span title="U+0116">ė ė</span> <span title="U+0118">ę ę</span> <span title="U+011A">ě ě</span> <span title="U+011C">ĝ ĝ</span> <span title="U+011E">ğ ğ</span> <span title="U+0120">ġ ġ</span> <span title="U+0122">ģ ģ</span> <span title="U+0124">ĥ ĥ</span> <span title="U+0126">ħ ħ</span> <span title="U+0128">ĩ ĩ</span> <span title="U+012A">ī ī</span> <span title="U+012C">ĭ ĭ</span> <span title="U+012E">į į</span> <span title="U+0130">i i</span> <span title="U+0132">ij ij</span> <span title="U+0134">ĵ ĵ</span> <span title="U+0136">ķ ķ</span> <span title="U+0139">ĺ ĺ</span> <span title="U+013B">ļ ļ</span> <span title="U+013D">ľ ľ</span> <span title="U+013F">ŀ ŀ</span> <span title="U+0141">ł ł</span> <span title="U+0143">ń ń</span> <span title="U+0145">ņ ņ</span> <span title="U+0147">ň ň</span> <span title="U+014A">ŋ ŋ</span> <span title="U+014C">ō ō</span> <span title="U+014E">ŏ ŏ</span> <span title="U+0150">ő ő</span> <span title="U+0152">œ œ</span> <span title="U+0154">ŕ ŕ</span> <span title="U+0156">ŗ ŗ</span> <span title="U+0158">ř ř</span> <span title="U+015A">ś ś</span> <span title="U+015C">ŝ ŝ</span> <span title="U+015E">ş ş</span> <span title="U+0160">š š</span> <span title="U+0162">ţ ţ</span> <span title="U+0164">ť ť</span> <span title="U+0166">ŧ ŧ</span> <span title="U+0168">ũ ũ</span> <span title="U+016A">ū ū</span> <span title="U+016C">ŭ ŭ</span> <span title="U+016E">ů ů</span> <span title="U+0170">ű ű</span> <span title="U+0172">ų ų</span> <span title="U+0174">ŵ ŵ</span> <span title="U+0176">ŷ ŷ</span> <span title="U+0178">ÿ ÿ</span> <span title="U+0179">ź ź</span> <span title="U+017B">ż ż</span> <span title="U+017D">ž ž</span></div>
|
||||
<!--Notes:
|
||||
Characters from this block that do not have case equivalents: ı, ĸ, ʼn, ſ
|
||||
Tip: To identify the characters where differences occur, in order to report problem characters,either mouse over to reveal a tooltip, or copy and paste the sequence into a tool such as <a href='http://r12a.github.io/uniview/' target='_blank'>UniView</a> or the <a href='http://r12a.github.io/apps/conversion/' target='_blank'>Unicode Conversion Tool</a>.
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if both characters in each pair match. If you are missing a font glyph for a character, ignore that pair, but report which characters were ignored.</p>
|
||||
<div class="test"><span title="U+10428">𐐨 𐐀</span> <span title="U+10429">𐐩 𐐁</span> <span title="U+1042A">𐐪 𐐂</span> <span title="U+1042B">𐐫 𐐃</span> <span title="U+1042C">𐐬 𐐄</span> <span title="U+1042D">𐐭 𐐅</span> <span title="U+1042E">𐐮 𐐆</span> <span title="U+1042F">𐐯 𐐇</span> <span title="U+10430">𐐰 𐐈</span> <span title="U+10431">𐐱 𐐉</span> <span title="U+10432">𐐲 𐐊</span> <span title="U+10433">𐐳 𐐋</span> <span title="U+10434">𐐴 𐐌</span> <span title="U+10435">𐐵 𐐍</span> <span title="U+10436">𐐶 𐐎</span> <span title="U+10437">𐐷 𐐏</span> <span title="U+10438">𐐸 𐐐</span> <span title="U+10439">𐐹 𐐑</span> <span title="U+1043A">𐐺 𐐒</span> <span title="U+1043B">𐐻 𐐓</span> <span title="U+1043C">𐐼 𐐔</span> <span title="U+1043D">𐐽 𐐕</span> <span title="U+1043E">𐐾 𐐖</span> <span title="U+1043F">𐐿 𐐗</span> <span title="U+10440">𐑀 𐐘</span> <span title="U+10441">𐑁 𐐙</span> <span title="U+10442">𐑂 𐐚</span> <span title="U+10443">𐑃 𐐛</span> <span title="U+10444">𐑄 𐐜</span> <span title="U+10445">𐑅 𐐝</span> <span title="U+10446">𐑆 𐐞</span> <span title="U+10447">𐑇 𐐟</span> <span title="U+10448">𐑈 𐐠</span> <span title="U+10449">𐑉 𐐡</span> <span title="U+1044A">𐑊 𐐢</span> <span title="U+1044B">𐑋 𐐣</span> <span title="U+1044C">𐑌 𐐤</span> <span title="U+1044D">𐑍 𐐥</span> <span title="U+1044E">𐑎 𐐦</span> <span title="U+1044F">𐑏 𐐧</span> </div>
|
||||
<div class="test"><span title="U+10428">𐐀 𐐀</span> <span title="U+10429">𐐁 𐐁</span> <span title="U+1042A">𐐂 𐐂</span> <span title="U+1042B">𐐃 𐐃</span> <span title="U+1042C">𐐄 𐐄</span> <span title="U+1042D">𐐅 𐐅</span> <span title="U+1042E">𐐆 𐐆</span> <span title="U+1042F">𐐇 𐐇</span> <span title="U+10430">𐐈 𐐈</span> <span title="U+10431">𐐉 𐐉</span> <span title="U+10432">𐐊 𐐊</span> <span title="U+10433">𐐋 𐐋</span> <span title="U+10434">𐐌 𐐌</span> <span title="U+10435">𐐍 𐐍</span> <span title="U+10436">𐐎 𐐎</span> <span title="U+10437">𐐏 𐐏</span> <span title="U+10438">𐐐 𐐐</span> <span title="U+10439">𐐑 𐐑</span> <span title="U+1043A">𐐒 𐐒</span> <span title="U+1043B">𐐓 𐐓</span> <span title="U+1043C">𐐔 𐐔</span> <span title="U+1043D">𐐕 𐐕</span> <span title="U+1043E">𐐖 𐐖</span> <span title="U+1043F">𐐗 𐐗</span> <span title="U+10440">𐐘 𐐘</span> <span title="U+10441">𐐙 𐐙</span> <span title="U+10442">𐐚 𐐚</span> <span title="U+10443">𐐛 𐐛</span> <span title="U+10444">𐐜 𐐜</span> <span title="U+10445">𐐝 𐐝</span> <span title="U+10446">𐐞 𐐞</span> <span title="U+10447">𐐟 𐐟</span> <span title="U+10448">𐐠 𐐠</span> <span title="U+10449">𐐡 𐐡</span> <span title="U+1044A">𐐢 𐐢</span> <span title="U+1044B">𐐣 𐐣</span> <span title="U+1044C">𐐤 𐐤</span> <span title="U+1044D">𐐥 𐐥</span> <span title="U+1044E">𐐦 𐐦</span> <span title="U+1044F">𐐧 𐐧</span> </div>
|
||||
<!--Notes:
|
||||
Tip: To identify the characters where differences occur, in order to report problem characters,either mouse over to reveal a tooltip, or copy and paste the sequence into a tool such as <a href='http://r12a.github.io/uniview/' target='_blank'>UniView</a> or the <a href='http://r12a.github.io/apps/conversion/' target='_blank'>Unicode Conversion Tool</a>.
|
||||
-->
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if both characters in each pair match. If you are missing a font glyph for a character, ignore that pair, but report which characters were ignored.</p>
|
||||
<div class="test"><span title="U+10400">𐐀 𐐨</span> <span title="U+10401">𐐁 𐐩</span> <span title="U+10402">𐐂 𐐪</span> <span title="U+10403">𐐃 𐐫</span> <span title="U+10404">𐐄 𐐬</span> <span title="U+10405">𐐅 𐐭</span> <span title="U+10406">𐐆 𐐮</span> <span title="U+10407">𐐇 𐐯</span> <span title="U+10408">𐐈 𐐰</span> <span title="U+10409">𐐉 𐐱</span> <span title="U+1040A">𐐊 𐐲</span> <span title="U+1040B">𐐋 𐐳</span> <span title="U+1040C">𐐌 𐐴</span> <span title="U+1040D">𐐍 𐐵</span> <span title="U+1040E">𐐎 𐐶</span> <span title="U+1040F">𐐏 𐐷</span> <span title="U+10410">𐐐 𐐸</span> <span title="U+10411">𐐑 𐐹</span> <span title="U+10412">𐐒 𐐺</span> <span title="U+10413">𐐓 𐐻</span> <span title="U+10414">𐐔 𐐼</span> <span title="U+10415">𐐕 𐐽</span> <span title="U+10416">𐐖 𐐾</span> <span title="U+10417">𐐗 𐐿</span> <span title="U+10418">𐐘 𐑀</span> <span title="U+10419">𐐙 𐑁</span> <span title="U+1041A">𐐚 𐑂</span> <span title="U+1041B">𐐛 𐑃</span> <span title="U+1041C">𐐜 𐑄</span> <span title="U+1041D">𐐝 𐑅</span> <span title="U+1041E">𐐞 𐑆</span> <span title="U+1041F">𐐟 𐑇</span> <span title="U+10420">𐐠 𐑈</span> <span title="U+10421">𐐡 𐑉</span> <span title="U+10422">𐐢 𐑊</span> <span title="U+10423">𐐣 𐑋</span> <span title="U+10424">𐐤 𐑌</span> <span title="U+10425">𐐥 𐑍</span> <span title="U+10426">𐐦 𐑎</span> <span title="U+10427">𐐧 𐑏</span> </div>
|
||||
<div class="test"><span title="U+10400">𐐨 𐐨</span> <span title="U+10401">𐐩 𐐩</span> <span title="U+10402">𐐪 𐐪</span> <span title="U+10403">𐐫 𐐫</span> <span title="U+10404">𐐬 𐐬</span> <span title="U+10405">𐐭 𐐭</span> <span title="U+10406">𐐮 𐐮</span> <span title="U+10407">𐐯 𐐯</span> <span title="U+10408">𐐰 𐐰</span> <span title="U+10409">𐐱 𐐱</span> <span title="U+1040A">𐐲 𐐲</span> <span title="U+1040B">𐐳 𐐳</span> <span title="U+1040C">𐐴 𐐴</span> <span title="U+1040D">𐐵 𐐵</span> <span title="U+1040E">𐐶 𐐶</span> <span title="U+1040F">𐐷 𐐷</span> <span title="U+10410">𐐸 𐐸</span> <span title="U+10411">𐐹 𐐹</span> <span title="U+10412">𐐺 𐐺</span> <span title="U+10413">𐐻 𐐻</span> <span title="U+10414">𐐼 𐐼</span> <span title="U+10415">𐐽 𐐽</span> <span title="U+10416">𐐾 𐐾</span> <span title="U+10417">𐐿 𐐿</span> <span title="U+10418">𐑀 𐑀</span> <span title="U+10419">𐑁 𐑁</span> <span title="U+1041A">𐑂 𐑂</span> <span title="U+1041B">𐑃 𐑃</span> <span title="U+1041C">𐑄 𐑄</span> <span title="U+1041D">𐑅 𐑅</span> <span title="U+1041E">𐑆 𐑆</span> <span title="U+1041F">𐑇 𐑇</span> <span title="U+10420">𐑈 𐑈</span> <span title="U+10421">𐑉 𐑉</span> <span title="U+10422">𐑊 𐑊</span> <span title="U+10423">𐑋 𐑋</span> <span title="U+10424">𐑌 𐑌</span> <span title="U+10425">𐑍 𐑍</span> <span title="U+10426">𐑎 𐑎</span> <span title="U+10427">𐑏 𐑏</span> </div>
|
||||
<!--Notes:
|
||||
Tip: To identify the characters where differences occur, in order to report problem characters,either mouse over to reveal a tooltip, or copy and paste the sequence into a tool such as <a href='http://r12a.github.io/uniview/' target='_blank'>UniView</a> or the <a href='http://r12a.github.io/apps/conversion/' target='_blank'>Unicode Conversion Tool</a>.
|
||||
-->
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
</head>
|
||||
<body>
|
||||
<p class="instructions">Test passes if both characters in each pair match. If you are missing a font glyph for a character, ignore that pair, but report which characters were ignored.</p>
|
||||
<div class="test"><span>ʼN ʼN</span> <span>Ϊ́̈ Ϊ́̈</span> <span>Ϋ́ Ϋ́</span> <span>J̌ J̌</span> <span>H̱ H̱</span> <span>T̈ T̈</span> <span>W̊ W̊</span> <span>Y̊ Y̊</span> <span>Aʾ Aʾ</span> <span>Υ̓ Υ̓</span> <span>Υ̓̀ Υ̓̀</span> <span>Υ̓́ Υ̓́</span> <span>Υ̓͂ Υ̓͂</span> <span>Α͂ Α͂</span> <span>Η͂ Η͂</span> <span>Ϊ̀ Ϊ̀</span> <span>Ϊ́ Ϊ́</span> <span>Ι͂ Ι͂</span> <span>Ϊ͂ Ϊ͂</span> <span>Ϋ̀ Ϋ̀</span> <span>Ϋ́ Ϋ́</span> <span>Ρ̓ Ρ̓</span> <span>Υ͂ Υ͂</span> <span>Ϋ͂ Ϋ͂</span> <span>Ω͂ Ω͂</span></div>
|
||||
<div class="test"><span>ʼN ʼN</span> <span>Ϊ́ Ϊ́</span> <span>Ϋ́ Ϋ́</span> <span>J̌ J̌</span> <span>H̱ H̱</span> <span>T̈ T̈</span> <span>W̊ W̊</span> <span>Y̊ Y̊</span> <span>Aʾ Aʾ</span> <span>Υ̓ Υ̓</span> <span>Υ̓̀ Υ̓̀</span> <span>Υ̓́ Υ̓́</span> <span>Υ̓͂ Υ̓͂</span> <span>Α͂ Α͂</span> <span>Η͂ Η͂</span> <span>Ϊ̀ Ϊ̀</span> <span>Ϊ́ Ϊ́</span> <span>Ι͂ Ι͂</span> <span>Ϊ͂ Ϊ͂</span> <span>Ϋ̀ Ϋ̀</span> <span>Ϋ́ Ϋ́</span> <span>Ρ̓ Ρ̓</span> <span>Υ͂ Υ͂</span> <span>Ϋ͂ Ϋ͂</span> <span>Ω͂ Ω͂</span></div>
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue