OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 h1 { font-size: 24px; } |
| 6 td, div { font-size: 48px; } |
| 7 </style> |
| 8 </head> |
| 9 <body> |
| 10 <h1> |
| 11 The last two rows below should be identical. |
| 12 </h1> |
| 13 <table dir="rtl"> |
| 14 <tr><th>isolated</th><th>initial</th><th>medial</th><th>final</th></
tr> |
| 15 <tr><td>ع</td><td>ﻋ</td><td>ﻌ</td><td>ﻊ<
/td></tr> |
| 16 <tr><td>ع</td><td>ﻋ</td><td>ﻌ</td><td>ﻊ<
/td></tr> |
| 17 </table> |
| 18 |
| 19 <h1> |
| 20 The two lines below should be identical. |
| 21 </h1> |
| 22 <div dir="rtl">ععع</div> |
| 23 <div dir="rtl">ععع</div> |
| 24 </body> |
| 25 </html> |
OLD | NEW |