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: third_party/WebKit/LayoutTests/fast/lists/w3-css3-list-styles-fallback-style.html

Issue 1558143003: Fix Hebrew list-style number ordering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: V3 Created 4 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/lists/w3-css3-list-styles-fallback-style-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 <ol class="georgian" start="19999"> 112 <ol class="georgian" start="19999">
113 <li>&#x10F5;&#x10F0;&#x10E8;&#x10DF;&#x10D7;</li> 113 <li>&#x10F5;&#x10F0;&#x10E8;&#x10DF;&#x10D7;</li>
114 <li>20000</li> 114 <li>20000</li>
115 <li>20001</li> 115 <li>20001</li>
116 </ol> 116 </ol>
117 </div> 117 </div>
118 <div class="test"> 118 <div class="test">
119 <h2>hebrew</h2> 119 <h2>hebrew</h2>
120 <ol class="hebrew" start="-1"> 120 <ol class="hebrew" start="-1">
121 <li>-1</li> 121 <li>-1</li>
122 <li>&#x5D0;&#x5E4;&#x5E1;</li> 122 <li>&#x5E1;&#x5E4;&#x5D0;</li>
123 <li>&#x5D0;</li> 123 <li>&#x5D0;</li>
124 </ol> 124 </ol>
125 <ol class="hebrew" start="999999"> 125 <ol class="hebrew" start="999999">
126 <li>&#x5EA;&#x5EA;&#x5E7;&#x5E6;&#x5D8;&#x27;&#x5EA;&#x5EA;&#x5E7;&# x5E6;&#x5D8;</li> 126 <li>&#x5D8;&#x5E6;&#x5E7;&#x5EA;&#x5EA;&#x27;&#x5D8;&#x5E6;&#x5E7;&# x5EA;&#x5EA;</li>
127 <li>1000000</li> 127 <li>1000000</li>
128 <li>1000001</li> 128 <li>1000001</li>
129 </ol> 129 </ol>
130 </div> 130 </div>
131 <div class="test"> 131 <div class="test">
132 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. --> 132 <!-- FIXME: We don't currently support this list-style-type. These are e xpected failure results. -->
133 <h2>japanese-formal</h2> 133 <h2>japanese-formal</h2>
134 <ol class="japanese-formal" start="-1"> 134 <ol class="japanese-formal" start="-1">
135 <li>-1</li> 135 <li>-1</li>
136 <li>0</li> 136 <li>0</li>
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 <div class="test"> 383 <div class="test">
384 <h2>upper-latin</h2> 384 <h2>upper-latin</h2>
385 <ol class="upper-latin" start="-1"> 385 <ol class="upper-latin" start="-1">
386 <li>-1</li> 386 <li>-1</li>
387 <li>0</li> 387 <li>0</li>
388 <li>&#x0041;</li> 388 <li>&#x0041;</li>
389 </ol> 389 </ol>
390 </div> 390 </div>
391 </body> 391 </body>
392 </html> 392 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/lists/w3-css3-list-styles-fallback-style-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698