Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: LayoutTests/fast/lists/w3-css3-list-styles-fallback-style.html

Issue 1184433004: Implement chinese counter styles (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectation Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <link rel="stylesheet" href="resources/w3-css3-list-styles-alphabetic.css" t ype="text/css" charset="utf-8" /> 5 <link rel="stylesheet" href="resources/w3-css3-list-styles-alphabetic.css" t ype="text/css" charset="utf-8" />
6 <style> 6 <style>
7 .test ol { float: left; padding-right: 20px; } 7 .test ol { float: left; padding-right: 20px; }
8 .test h2 { clear: left; } 8 .test h2 { clear: left; }
9 hr { clear: left;} 9 hr { clear: left;}
10 hr + h2 { color: blue; } 10 hr + h2 { color: blue; }
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 </div> 156 </div>
157 <div class="test"> 157 <div class="test">
158 <h2>lower-roman</h2> 158 <h2>lower-roman</h2>
159 <ol class="lower-roman" start="-1"> 159 <ol class="lower-roman" start="-1">
160 <li>-1</li> 160 <li>-1</li>
161 <li>0</li> 161 <li>0</li>
162 <li>i</li> 162 <li>i</li>
163 </ol> 163 </ol>
164 </div> 164 </div>
165 <div class="test"> 165 <div class="test">
166 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
167 <h2>simp-chinese-formal</h2> 166 <h2>simp-chinese-formal</h2>
168 <ol class="simp-chinese-formal" start="-1"> 167 <ol class="simp-chinese-formal" start="-1">
169 <li>-1</li> 168 <li>&#x8D1F;&#x58F9;</li>
170 <li>0</li> 169 <li>&#x96F6;</li>
171 <li>1</li> 170 <li>&#x58F9;</li>
172 </ol> 171 </ol>
173 </div> 172 </div>
174 <div class="test"> 173 <div class="test">
175 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
176 <h2>simp-chinese-informal</h2> 174 <h2>simp-chinese-informal</h2>
177 <ol class="simp-chinese-informal" start="-1"> 175 <ol class="simp-chinese-informal" start="-1">
178 <li>-1</li> 176 <li>&#x8D1F;&#x4E00;</li>
179 <li>0</li> 177 <li>&#x96F6;</li>
180 <li>1</li> 178 <li>&#x4E00;</li>
181 </ol> 179 </ol>
182 </div> 180 </div>
183 <div class="test"> 181 <div class="test">
184 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. --> 182 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
185 <h2>syriac</h2> 183 <h2>syriac</h2>
186 <ol class="syriac" start="-1"> 184 <ol class="syriac" start="-1">
187 <li>-1</li> 185 <li>-1</li>
188 <li>0</li> 186 <li>0</li>
189 <li>1</li> 187 <li>1</li>
190 </ol> 188 </ol>
191 </div> 189 </div>
192 <div class="test"> 190 <div class="test">
193 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. --> 191 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
194 <h2>tamil</h2> 192 <h2>tamil</h2>
195 <ol class="tamil" start="-1"> 193 <ol class="tamil" start="-1">
196 <li>-1</li> 194 <li>-1</li>
197 <li>0</li> 195 <li>0</li>
198 <li>1</li> 196 <li>1</li>
199 </ol> 197 </ol>
200 </div> 198 </div>
201 <div class="test"> 199 <div class="test">
202 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
203 <h2>trad-chinese-formal</h2> 200 <h2>trad-chinese-formal</h2>
204 <ol class="trad-chinese-formal" start="-1"> 201 <ol class="trad-chinese-formal" start="-1">
205 <li>-1</li> 202 <li>&#x8CA0;&#x58F9;</li>
206 <li>0</li> 203 <li>&#x96F6;</li>
207 <li>1</li> 204 <li>&#x58F9;</li>
208 </ol> 205 </ol>
209 </div> 206 </div>
210 <div class="test"> 207 <div class="test">
211 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
212 <h2>trad-chinese-informal</h2> 208 <h2>trad-chinese-informal</h2>
213 <ol class="trad-chinese-informal" start="-1"> 209 <ol class="trad-chinese-informal" start="-1">
214 <li>-1</li> 210 <li>&#x8CA0;&#x4E00;</li>
215 <li>0</li> 211 <li>&#x96F6;</li>
216 <li>1</li> 212 <li>&#x4E00;</li>
217 </ol> 213 </ol>
218 </div> 214 </div>
219 <div class="test"> 215 <div class="test">
220 <h2>upper-armenian</h2> 216 <h2>upper-armenian</h2>
221 <ol class="upper-armenian" start="-1"> 217 <ol class="upper-armenian" start="-1">
222 <li>-1</li> 218 <li>-1</li>
223 <li>0</li> 219 <li>0</li>
224 <li>&#x0531;</li> 220 <li>&#x0531;</li>
225 </ol> 221 </ol>
226 </div> 222 </div>
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 <div class="test"> 375 <div class="test">
380 <h2>upper-latin</h2> 376 <h2>upper-latin</h2>
381 <ol class="upper-latin" start="-1"> 377 <ol class="upper-latin" start="-1">
382 <li>-1</li> 378 <li>-1</li>
383 <li>0</li> 379 <li>0</li>
384 <li>&#x0041;</li> 380 <li>&#x0041;</li>
385 </ol> 381 </ol>
386 </div> 382 </div>
387 </body> 383 </body>
388 </html> 384 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698