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

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

Issue 1170603003: Drop trailing zeroes only for rightmost group for cjk-ideographic (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Really fix test 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 </ol> 79 </ol>
80 <ol class="armenian" start="99999999"> 80 <ol class="armenian" start="99999999">
81 <li>&#x554;&#x302;&#x54B;&#x302;&#x542;&#x302;&#x539;&#x302;&#x554;& #x54B;&#x542;&#x539;</li> 81 <li>&#x554;&#x302;&#x54B;&#x302;&#x542;&#x302;&#x539;&#x302;&#x554;& #x54B;&#x542;&#x539;</li>
82 <li>100000000</li> 82 <li>100000000</li>
83 </ol> 83 </ol>
84 </div> 84 </div>
85 85
86 <div class="test"> 86 <div class="test">
87 <h2>cjk-ideographic</h2> 87 <h2>cjk-ideographic</h2>
88 <ol class="cjk-ideographic" start="-1"> 88 <ol class="cjk-ideographic" start="-1">
89 <li>-1</li> 89 <li>&#x8CA0;&#x4E00;</li>
90 <li>&#x96F6;</li> 90 <li>&#x96F6;</li>
91 <li>&#x4E00;</li> 91 <li>&#x4E00;</li>
92 </ol> 92 </ol>
93 </div> 93 </div>
94 94
95 <div class="test"> 95 <div class="test">
96 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. --> 96 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
97 <h2>ethiopic-numeric</h2> 97 <h2>ethiopic-numeric</h2>
98 <ol class="ethiopic-numeric" start="-1"> 98 <ol class="ethiopic-numeric" start="-1">
99 <li>-1</li> 99 <li>-1</li>
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 <div class="test"> 379 <div class="test">
380 <h2>upper-latin</h2> 380 <h2>upper-latin</h2>
381 <ol class="upper-latin" start="-1"> 381 <ol class="upper-latin" start="-1">
382 <li>-1</li> 382 <li>-1</li>
383 <li>0</li> 383 <li>0</li>
384 <li>&#x0041;</li> 384 <li>&#x0041;</li>
385 </ol> 385 </ol>
386 </div> 386 </div>
387 </body> 387 </body>
388 </html> 388 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698