mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 84af6c875d378944b39d895acdcfc170736b2d3d
This commit is contained in:
parent
d0bd2d5e44
commit
b81cdc75ce
246 changed files with 10836 additions and 1337 deletions
15
tests/wpt/web-platform-tests/css/css-content/quotes-001.html
Normal file
15
tests/wpt/web-platform-tests/css/css-content/quotes-001.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Browser uses default quote marks when no lang is specified">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-001-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the <q>outer <q>quote marks</q> are double,
|
||||
and the two sets of <q>inner</q> ones</q> are single.
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-002.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-002.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="en-US">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="The quotes property controls quote marks inserted by the q element">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-002-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
.test { quotes: "<" ">" ; }
|
||||
</style>
|
||||
<body>
|
||||
Test passes if the word <q>quotes</q> is enclosed in curly quotes,
|
||||
and <q class=test>angle brackets</q> in angle brackets.
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-003.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-003.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="en-US">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="The quotes property can specify different marks for nested quotes">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-003-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
.test { quotes: "<" ">" "[" "]"; }
|
||||
</style>
|
||||
<body>
|
||||
<p class=test>Test passes if the <q>outer <q>quote marks</q> are angle brackets,
|
||||
and the two sets of <q>inner</q> ones</q> are square brackets.
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-004.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-004.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="am">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Amharic quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-004-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>አንድ <q>ሁለት</q> ሦስት</q>
|
||||
<p>«አንድ ‹ሁለት› ሦስት»
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-005.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-005.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="ar">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Arabic quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-005-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p dir=rtl><q>واحد <q>اثنينل</q> ثلاثة</q>
|
||||
<p dir=rtl>”واحد ’اثنينل‘ ثلاثة“
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-006.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-006.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="bn">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Bengali quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-006-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>এক <q>দুই</q> তিন</q>
|
||||
<p>“এক ‘দুই’ তিন”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-007.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-007.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="chr">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Cherokee quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-007-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>Ꮒꭶꮣ <q>ꭰꮒᏼꮻ</q> ꭴꮎꮥꮕꭲ</q>
|
||||
<p>“Ꮒꭶꮣ ‘ꭰꮒᏼꮻ’ ꭴꮎꮥꮕꭲ”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-008.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-008.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="el">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Greek quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-008-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>ένα <q>δύο</q> τρία</q>
|
||||
<p>«ένα “δύο” τρία»
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-009.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-009.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="fa">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Farsi quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-009-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>یک <q>دو</q> سه</q>
|
||||
<p>«یک ‹دو› سه»
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-010.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-010.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="French quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-010-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>un <q>deux</q> trois</q>
|
||||
<p>«un «deux» trois»
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-011.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-011.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="fr-CH">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Swiss-French quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-011-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>un <q>deux</q> trois</q>
|
||||
<p>«un ‹deux› trois»
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-012.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-012.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="gu">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Gujarati quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-012-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>એક <q>બે</q> રણ</q>
|
||||
<p>“એક ‘બે’ રણ”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-013.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-013.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="he">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Hebrew quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-013-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p dir=rtl><q>אחת <q>שתיים</q> שלוש</q>
|
||||
<p dir=rtl>”אחת ’שתיים’ שלוש”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-014.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-014.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="hi">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Hindi quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-014-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>एक <q>दो</q> तीन</q>
|
||||
<p>“एक ‘दो’ तीन”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-015.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-015.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="hu">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Hungarian quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-015-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>egy <q>kettő</q> három</q>
|
||||
<p>„egy »kettő« három”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-016.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-016.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="ja">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Japanese quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-016-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>一 <q>二</q> 三</q>
|
||||
<p>「一 『二』 三」
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-017.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-017.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="km">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Khmer quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-017-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>មួយ <q>ពីរ</q> បី</q>
|
||||
<p>“មួយ ‘ពីរ’ បី”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-018.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-018.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="ko">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Korean quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-018-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>하나 <q>둘</q> 셋</q>
|
||||
<p>“하나 ‘둘’ 셋”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-019.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-019.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="lo">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Lao quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-019-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>ຫນຶ່ງ <q>ສອງ</q> ສາມ</q>
|
||||
<p>“ຫນຶ່ງ ‘ສອງ’ ສາມ”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-020.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-020.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="my">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Burmese quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-020-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>တစ် <q>နှစ်</q> သုံး</q>
|
||||
<p>“တစ် ‘နှစ်’ သုံး”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-021.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-021.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="nl">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Dutch quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-021-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>een <q>twee</q> drie</q>
|
||||
<p>‘een “twee” drie’
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-022.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-022.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="pa">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Punjabi quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-022-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>ਇੱਕ <q>ਦੋ</q> ਤਿੰਨ</q>
|
||||
<p>“ਇੱਕ ‘ਦੋ’ ਤਿੰਨ”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-023.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-023.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="ta">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Tamil quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-023-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>ஒன்று <q>இரண்டு</q> மூன்று</q>
|
||||
<p>“ஒன்று ‘இரண்டு’ மூன்று”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-024.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-024.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="th">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Thai quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-024-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>หนึ่ง<q>สอง</q>สาม</q>
|
||||
<p>“หนึ่ง‘สอง’สาม”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-025.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-025.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="zh-Hans">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Simplified Chinese quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-025-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>一 <q>二</q> 三</q>
|
||||
<p>“一 ‘二’ 三”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-026.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-026.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="zh-Hant">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Traditional Chinese quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-026-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>一 <q>二</q> 三</q>
|
||||
<p>「一 『二』 三」
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-027.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-027.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="zh">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Chinese quotation marks follow CLDR">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#quotes">
|
||||
<link rel=match href="reference/quotes-027-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p><q>一 <q>二</q> 三</q>
|
||||
<p>“一 ‘二’ 三”
|
15
tests/wpt/web-platform-tests/css/css-content/quotes-028.html
Normal file
15
tests/wpt/web-platform-tests/css/css-content/quotes-028.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Nested quotes use successive pairs, then repeat final pair">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel=match href="reference/quotes-028-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; quotes: "“" "”" "‘" "’" "«" "»" "‹" "›"; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One <q>two <q>three <q>four <q>five <q>six</q></q></q></q></q>
|
||||
<p>One “two ‘three «four ‹five ‹six››»’”
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-029.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-029.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="Nested quotes continue at the correct level when the quotes property is updated">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel=match href="reference/quotes-029-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; quotes: none; }
|
||||
.q { quotes: "“" "”" "‘" "’" "«" "»" "‹" "›"; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One <q>two <q>three <q class=q>four <q>five <q>six</q></q></q></q></q>
|
||||
<p>One two three «four ‹five ‹six››»
|
15
tests/wpt/web-platform-tests/css/css-content/quotes-030.html
Normal file
15
tests/wpt/web-platform-tests/css/css-content/quotes-030.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="quotes:auto with mixed languages uses appropriate CLDR quotes for each language">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel=match href="reference/quotes-030-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; quotes: auto; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One <q>two <q lang="ja">three <q lang="fr">four</q></q></q>
|
||||
<p>One “two <span lang="ja">『three <span lang="fr">«four»</span>』</span>”
|
15
tests/wpt/web-platform-tests/css/css-content/quotes-031.html
Normal file
15
tests/wpt/web-platform-tests/css/css-content/quotes-031.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="language change does not override explicit quotes:<pair-list>">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel=match href="reference/quotes-031-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; quotes: "‹" "›"; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One <q>two <q lang="ja">three <q lang="fr">four</q></q></q>
|
||||
<p>One ‹two <span lang="ja">‹three <span lang="fr">‹four›</span>›</span>›
|
15
tests/wpt/web-platform-tests/css/css-content/quotes-032.html
Normal file
15
tests/wpt/web-platform-tests/css/css-content/quotes-032.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="lang attribute does not override explicit quotes:none setting">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel=match href="reference/quotes-032-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; quotes: none; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if both lines match, with no quote marks:
|
||||
<p>One <q>two <q lang="ja">three <q lang="fr">four</q></q></q>
|
||||
<p>One two <span lang="ja">three <span lang="fr">four</span></span>
|
16
tests/wpt/web-platform-tests/css/css-content/quotes-033.html
Normal file
16
tests/wpt/web-platform-tests/css/css-content/quotes-033.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content test: quotes</title>
|
||||
<meta name="assert" content="quotes:auto resets default behavior after quotes:none">
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
|
||||
<link rel=match href="reference/quotes-033-ref.html">
|
||||
<style>
|
||||
body { font: 32px serif; quotes: none; }
|
||||
.inner { quotes: auto; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if quote marks in both lines match:
|
||||
<p>One <q>two</q> <span class="inner"><q>three <q>four</q></q></span> <q>five</q>
|
||||
<p>One two “three ‘four’” five
|
|
@ -0,0 +1,11 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the “outer ‘quote marks’ are double,
|
||||
and the two sets of ‘inner’ ones” are single.
|
|
@ -0,0 +1,11 @@
|
|||
<!doctype html>
|
||||
<html lang="en-US">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
Test passes if the word “quotes” is enclosed in curly quotes,
|
||||
and <angle brackets> in angle brackets.
|
|
@ -0,0 +1,11 @@
|
|||
<!doctype html>
|
||||
<html lang="en-US">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p class=test>Test passes if the <outer [quote marks] are angle brackets,
|
||||
and the two sets of [inner] ones> are square brackets.
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="am">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>«አንድ ‹ሁለት› ሦስት»
|
||||
<p>«አንድ ‹ሁለት› ሦስት»
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="ar">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p dir=rtl>”واحد ’اثنينل‘ ثلاثة“
|
||||
<p dir=rtl>”واحد ’اثنينل‘ ثلاثة“
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="bn">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“এক ‘দুই’ তিন”
|
||||
<p>“এক ‘দুই’ তিন”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="chr">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“Ꮒꭶꮣ ‘ꭰꮒᏼꮻ’ ꭴꮎꮥꮕꭲ”
|
||||
<p>“Ꮒꭶꮣ ‘ꭰꮒᏼꮻ’ ꭴꮎꮥꮕꭲ”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="el">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>«ένα “δύο” τρία»
|
||||
<p>«ένα “δύο” τρία»
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="fa">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>«یک ‹دو› سه»
|
||||
<p>«یک ‹دو› سه»
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>«un «deux» trois»
|
||||
<p>«un «deux» trois»
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="fr-CH">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>«un ‹deux› trois»
|
||||
<p>«un ‹deux› trois»
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="gu">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“એક ‘બે’ રણ”
|
||||
<p>“એક ‘બે’ રણ”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="he">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p dir=rtl>”אחת ’שתיים’ שלוש”
|
||||
<p dir=rtl>”אחת ’שתיים’ שלוש”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="hi">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“एक ‘दो’ तीन”
|
||||
<p>“एक ‘दो’ तीन”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="hu">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>„egy »kettő« három”
|
||||
<p>„egy »kettő« három”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="ja">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>「一 『二』 三」
|
||||
<p>「一 『二』 三」
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="km">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“មួយ ‘ពីរ’ បី”
|
||||
<p>“មួយ ‘ពីរ’ បី”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="ko">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“하나 ‘둘’ 셋”
|
||||
<p>“하나 ‘둘’ 셋”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="lo">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“ຫນຶ່ງ ‘ສອງ’ ສາມ”
|
||||
<p>“ຫນຶ່ງ ‘ສອງ’ ສາມ”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="my">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“တစ် ‘နှစ်’ သုံး”
|
||||
<p>“တစ် ‘နှစ်’ သုံး”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="nl">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>‘een “twee” drie’
|
||||
<p>‘een “twee” drie’
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="pa">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“ਇੱਕ ‘ਦੋ’ ਤਿੰਨ”
|
||||
<p>“ਇੱਕ ‘ਦੋ’ ਤਿੰਨ”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="ta">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“ஒன்று ‘இரண்டு’ மூன்று”
|
||||
<p>“ஒன்று ‘இரண்டு’ மூன்று”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="th">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“หนึ่ง‘สอง’สาม”
|
||||
<p>“หนึ่ง‘สอง’สาม”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="zh-Hans">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“一 ‘二’ 三”
|
||||
<p>“一 ‘二’ 三”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="zh-Hant">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>「一 『二』 三」
|
||||
<p>「一 『二』 三」
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="zh">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>“一 ‘二’ 三”
|
||||
<p>“一 ‘二’ 三”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One “two ‘three «four ‹five ‹six››»’”
|
||||
<p>One “two ‘three «four ‹five ‹six››»’”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One two three «four ‹five ‹six››»
|
||||
<p>One two three «four ‹five ‹six››»
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One “two <span lang="ja">『three <span lang="fr">«four»</span>』</span>”
|
||||
<p>One “two <span lang="ja">『three <span lang="fr">«four»</span>』</span>”
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if the quote marks in both lines match:
|
||||
<p>One ‹two <span lang="ja">‹three <span lang="fr">‹four›</span>›</span>›
|
||||
<p>One ‹two <span lang="ja">‹three <span lang="fr">‹four›</span>›</span>›
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if both lines match, with no quote marks:
|
||||
<p>One two <span lang="ja">three <span lang="fr">four</span></span>
|
||||
<p>One two <span lang="ja">three <span lang="fr">four</span></span>
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<meta charset=utf-8>
|
||||
<title>CSS Generated Content reference: quotes</title>
|
||||
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
|
||||
<style>
|
||||
body { font: 32px serif; }
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if quote marks in both lines match:
|
||||
<p>One two “three ‘four’” five
|
||||
<p>One two “three ‘four’” five
|
Loading…
Add table
Add a link
Reference in a new issue