Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html lang="en" > | |
| 3 <head> | |
| 4 <meta charset="utf-8"/> | |
| 5 <title>korean-hangul-formal, 0-9</title> | |
|
eae
2015/06/11 20:41:43
Use single or double quotes consistently. We gener
rwlbuis
2015/06/11 22:20:16
Done. BTW my thinking was keeping the w3c tests as
| |
| 6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'> | |
| 7 <link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#complex-cjk'> | |
| 8 <link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" /> | |
| 9 <meta name='flags' content='font'> | |
| 10 <meta name="assert" content="Setting list-style-type to korean-hangul-formal wil l produce list of up to 9 items numbering as described in the CSS3 Counter Style s module."> | |
| 11 <style type='text/css'> | |
| 12 .test { font-size: 25px; font-family: 'Times New Roman'; } | |
| 13 ol { margin: 0; padding-left: 8em; } | |
| 14 ol li { list-style-type: korean-hangul-formal; } | |
| 15 </style> | |
| 16 <script src="resources/dump-list.js"></script> | |
| 17 <script> | |
| 18 function runTest() | |
| 19 { | |
| 20 if (!window.testRunner) | |
| 21 return; | |
| 22 | |
| 23 testRunner.dumpAsText(); | |
| 24 filterListsWithReplacement(document.querySelectorAll(".test ol"), testListItem MarkerEqualsListItemText); | |
| 25 } | |
| 26 window.onload = runTest; | |
|
eae
2015/06/11 20:41:43
Do you really need to wait for the onload event? W
rwlbuis
2015/06/11 22:20:16
Good point, fixed.
| |
| 27 </script> | |
| 28 </head> | |
| 29 <body> | |
| 30 <p class="instructions">Test passes if the two columns are the same, ignoring th e suffix.</p> | |
| 31 | |
| 32 | |
| 33 <div class="test"><ol start='0'><li title='0'>영</li></ol> | |
| 34 <ol start='1'><li title='1'>일</li></ol> | |
| 35 <ol start='2'><li title='2'>이</li></ol> | |
| 36 <ol start='3'><li title='3'>삼</li></ol> | |
| 37 <ol start='4'><li title='4'>사</li></ol> | |
| 38 <ol start='5'><li title='5'>오</li></ol> | |
| 39 <ol start='6'><li title='6'>육</li></ol> | |
| 40 <ol start='7'><li title='7'>칠</li></ol> | |
| 41 <ol start='8'><li title='8'>팔</li></ol> | |
| 42 <ol start='9'><li title='9'>구</li></ol> | |
| 43 </div> | |
| 44 | |
| 45 | |
| 46 <!--Notes: | |
| 47 You will need an appropriate font to run this test. | |
|
eae
2015/06/11 20:41:43
This note is only relevant to those viewing the te
rwlbuis
2015/06/11 22:20:16
Done.
| |
| 48 | |
| 49 To see the ASCII decimal number associated with a row, mouse over it and the num ber will pop up in a tooltip. | |
| 50 --> | |
| 51 | |
| 52 | |
| 53 </body> | |
| 54 </html> | |
| OLD | NEW |