| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-8"> | 3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-8"> |
| 4 <title>-webkit-rtl-ordering</title> | 4 <title>-webkit-rtl-ordering</title> |
| 5 <style> | |
| 6 @font-face { | |
| 7 font-family: 'times'; | |
| 8 src: local('Times'); | |
| 9 } | |
| 10 | |
| 11 /* Match Mac OS X's font fallback behavior on Windows */ | |
| 12 | |
| 13 @font-face { | |
| 14 font-family: 'times'; | |
| 15 src: local('Lucida Grande'); | |
| 16 /* Hebrew */ | |
| 17 unicode-range: U+0590-05FF; | |
| 18 } | |
| 19 </style> | |
| 20 </head> | 5 </head> |
| 21 <body> | 6 <body> |
| 22 <p> | 7 <p> |
| 23 This tests for a regression against <i><a href="https://bugs.webkit.org/show_bug
.cgi?id=6334">http://bugzilla.opendarwin.org/show_bug.cgi?id=6334</a> REGRESSION
: <input type="button"> text is reversed on "visual Hebrew" pages</i>. | 8 This tests for a regression against <i><a href="https://bugs.webkit.org/show_bug
.cgi?id=6334">http://bugzilla.opendarwin.org/show_bug.cgi?id=6334</a> REGRESSION
: <input type="button"> text is reversed on "visual Hebrew" pages</i>. |
| 24 </p> | 9 </p> |
| 25 <hr> | 10 <hr> |
| 26 <p>The text on both buttons should like this: øåúôë</p> | 11 <p>The text on both buttons should like this: øåúôë</p> |
| 27 <button>øåúôë</button> | 12 <button>øåúôë</button> |
| 28 <br> | 13 <br> |
| 29 <input type="button" value="ëôúåø"> | 14 <input type="button" value="ëôúåø"> |
| 30 <hr> | 15 <hr> |
| 31 <p>The following lines should be identical:</p> | 16 <p>The following lines should be identical:</p> |
| 32 <p style="-webkit-rtl-ordering: logical;"> | 17 <p style="-webkit-rtl-ordering: logical;"> |
| 33 äîàä ä-21 | 18 äîàä ä-21 |
| 34 </p> | 19 </p> |
| 35 <p> | 20 <p> |
| 36 21-ä äàîä | 21 21-ä äàîä |
| 37 </p> | 22 </p> |
| 38 </body> | 23 </body> |
| 39 </html> | 24 </html> |
| OLD | NEW |