| Index: LayoutTests/fast/lists/w3-css3-list-styles-numeric.html
|
| diff --git a/LayoutTests/fast/lists/w3-css3-list-styles-numeric.html b/LayoutTests/fast/lists/w3-css3-list-styles-numeric.html
|
| index ae261fab06fcf8120babd9c1598ec77659cb72dc..15d3b0e1caeec3ce08dd882527ed83eee64c7032 100644
|
| --- a/LayoutTests/fast/lists/w3-css3-list-styles-numeric.html
|
| +++ b/LayoutTests/fast/lists/w3-css3-list-styles-numeric.html
|
| @@ -8,23 +8,21 @@
|
| .negative-number li:before { content: "\002D"; }
|
|
|
| /*
|
| - The following styles are ordered as they appear in section 4.3. of the
|
| - Draft 7 November 2002 draft of the CSS3 Lists module <http://www.w3.org/TR/css3-lists/#numeric>.
|
| + The following styles are ordered as they appear in section 6.1. of the
|
| + 3 February 2015 CR of the CSS3 Counter Styles Level 3 module <http://www.w3.org/TR/css-counter-styles-3/#simple-numeric>.
|
| */
|
| + ol.decimal { list-style-type: decimal; }
|
|
|
| + ol.decimal-leading-zero { list-style-type: decimal-leading-zero; }
|
| +
|
| ol.arabic-indic { list-style-type: arabic-indic; }
|
| -
|
| - ol.binary { list-style-type: binary; }
|
| -
|
| +
|
| ol.bengali { list-style-type: bengali; }
|
| -
|
| +
|
| ol.cambodian { list-style-type: cambodian; }
|
| +
|
| ol.khmer { list-style-type: khmer; }
|
|
|
| - ol.decimal { list-style-type: decimal; }
|
| -
|
| - ol.decimal-leading-zero { list-style-type: decimal-leading-zero; }
|
| -
|
| ol.devanagari { list-style-type: devanagari; }
|
|
|
| ol.gujarati { list-style-type: gujarati; }
|
| @@ -33,8 +31,6 @@
|
|
|
| ol.kannada { list-style-type: kannada; }
|
|
|
| - ol.lower-hexadecimal { list-style-type: lower-hexadecimal; }
|
| -
|
| ol.lao { list-style-type: lao; }
|
|
|
| ol.malayalam { list-style-type: malayalam; }
|
| @@ -43,8 +39,6 @@
|
|
|
| ol.myanmar { list-style-type: myanmar; }
|
|
|
| - ol.octal { list-style-type: octal; }
|
| -
|
| ol.oriya { list-style-type: oriya; }
|
|
|
| ol.persian { list-style-type: persian; }
|
| @@ -52,11 +46,9 @@
|
|
|
| ol.telugu { list-style-type: telugu; }
|
|
|
| - ol.tibetan { list-style-type: tibetan; }
|
| -
|
| ol.thai { list-style-type: thai; }
|
|
|
| - ol.upper-hexadecimal { list-style-type: upper-hexadecimal; }
|
| + ol.tibetan { list-style-type: tibetan; }
|
| </style>
|
| <script src="resources/dump-list.js"></script>
|
| <script>
|
| @@ -81,7 +73,7 @@
|
| </head>
|
| <body>
|
| <h1>CSS3 Numeric list-style-type</h1>
|
| - <p id="description">This tests that all of the numeric CSS3 list-style-types are supported as per <a href="http://www.w3.org/TR/css3-lists/#numeric">section 4.3 of the spec. CSS3 Lists module</a> (Draft 7 November 2002). This test PASSED if the list item matches its bullet for every list item (below). For example, for the decimal numeric system the second <li> (which corresponds to 2 in the standard ordering of the positive integers) should be rendered as: 2. 2</p>
|
| + <p id="description">his tests that all of the alphabetic CSS3 list-style-types are supported as per <a href="http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic">section 6.1 of the spec. CSS3 Counter Styles Level 3 module</a> (CR 3 February 2015). This test PASSED if the list item matches its bullet for every list item (below). For example, for the decimal numeric system the second <li> (which corresponds to 2 in the standard ordering of the positive integers) should be rendered as: 2. 2</p>
|
| <div class="test">
|
| <h2>arabic-indic</h2>
|
| <ol class="arabic-indic">
|
| @@ -109,24 +101,6 @@
|
| </div>
|
|
|
| <div class="test">
|
| - <h2>binary</h2>
|
| - <ol class="binary">
|
| - <li>1</li>
|
| - <li>10</li>
|
| - </ol>
|
| - <ol class="binary" start="0">
|
| - <li>0</li>
|
| - </ol>
|
| - <ol class="binary" start="-2147483649">
|
| - <li>1</li>
|
| - </ol>
|
| - <ol class="binary negative-number" start="-2147483648">
|
| - <li>10000000000000000000000000000000</li>
|
| - <li>1111111111111111111111111111111</li>
|
| - </ol>
|
| - </div>
|
| -
|
| - <div class="test">
|
| <h2>bengali</h2>
|
| <ol class="bengali">
|
| <li>১</li>
|
| @@ -360,38 +334,6 @@
|
| </div>
|
|
|
| <div class="test">
|
| - <h2>lower-hexadecimal</h2>
|
| - <ol class="lower-hexadecimal">
|
| - <li>1</li>
|
| - <li>2</li>
|
| - <li>3</li>
|
| - <li>4</li>
|
| - <li>5</li>
|
| - <li>6</li>
|
| - <li>7</li>
|
| - <li>8</li>
|
| - <li>9</li>
|
| - <li>a</li>
|
| - <li>b</li>
|
| - <li>c</li>
|
| - <li>d</li>
|
| - <li>e</li>
|
| - <li>f</li>
|
| - <li>10</li>
|
| - </ol>
|
| - <ol class="lower-hexadecimal" start="0">
|
| - <li>0</li>
|
| - </ol>
|
| - <ol class="lower-hexadecimal" start="-2147483649">
|
| - <li>1</li>
|
| - </ol>
|
| - <ol class="lower-hexadecimal negative-number" start="-2147483648">
|
| - <li>80000000</li>
|
| - <li>7fffffff</li>
|
| - </ol>
|
| - </div>
|
| -
|
| - <div class="test">
|
| <h2>lao</h2>
|
| <ol class="lao">
|
| <li>໑</li>
|
| @@ -496,30 +438,6 @@
|
| </div>
|
|
|
| <div class="test">
|
| - <h2>octal</h2>
|
| - <ol class="octal">
|
| - <li>1</li>
|
| - <li>2</li>
|
| - <li>3</li>
|
| - <li>4</li>
|
| - <li>5</li>
|
| - <li>6</li>
|
| - <li>7</li>
|
| - <li>10</li>
|
| - </ol>
|
| - <ol class="octal" start="0">
|
| - <li>0</li>
|
| - </ol>
|
| - <ol class="octal" start="-2147483649">
|
| - <li>1</li>
|
| - </ol>
|
| - <ol class="octal negative-number" start="-2147483648">
|
| - <li>20000000000</li>
|
| - <li>17777777777</li>
|
| - </ol>
|
| - </div>
|
| -
|
| - <div class="test">
|
| <h2>oriya</h2>
|
| <ol class="oriya">
|
| <li>୧</li>
|
| @@ -673,37 +591,5 @@
|
| <li>๒๑๔๗๔๘๓๖๔๗</li>
|
| </ol>
|
| </div>
|
| -
|
| - <div class="test">
|
| - <h2>upper-hexadecimal</h2>
|
| - <ol class="upper-hexadecimal">
|
| - <li>1</li>
|
| - <li>2</li>
|
| - <li>3</li>
|
| - <li>4</li>
|
| - <li>5</li>
|
| - <li>6</li>
|
| - <li>7</li>
|
| - <li>8</li>
|
| - <li>9</li>
|
| - <li>A</li>
|
| - <li>B</li>
|
| - <li>C</li>
|
| - <li>D</li>
|
| - <li>E</li>
|
| - <li>F</li>
|
| - <li>10</li>
|
| - </ol>
|
| - <ol class="upper-hexadecimal" start="0">
|
| - <li>0</li>
|
| - </ol>
|
| - <ol class="upper-hexadecimal" start="-2147483649">
|
| - <li>1</li>
|
| - </ol>
|
| - <ol class="upper-hexadecimal negative-number" start="-2147483648">
|
| - <li>80000000</li>
|
| - <li>7FFFFFFF</li>
|
| - </ol>
|
| - </div>
|
| </body>
|
| </html>
|
|
|