| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <head> |
| 3 <meta charset="utf-8"> | 3 <meta charset="utf-8"> |
| 4 <style> | 4 <style> |
| 5 body { overflow: hidden; } |
| 5 .testDiv { | 6 .testDiv { |
| 6 width: 180px; | 7 width: 180px; |
| 7 height: 20px; | 8 height: 20px; |
| 8 border: 1px solid black; | 9 border: 1px solid black; |
| 9 white-space: nowrap; | 10 white-space: nowrap; |
| 10 overflow: hidden; | 11 overflow: hidden; |
| 11 margin: 0 0 20px 0; | 12 margin: 0 0 20px 0; |
| 12 } | 13 } |
| 13 | 14 |
| 14 .forcertl { | 15 .forcertl { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 </a> | 85 </a> |
| 85 </div> | 86 </div> |
| 86 | 87 |
| 87 LTR link with forced rtl content: | 88 LTR link with forced rtl content: |
| 88 <div class="testDiv ellipsis" dir=ltr> | 89 <div class="testDiv ellipsis" dir=ltr> |
| 89 <a href=#> | 90 <a href=#> |
| 90 <span class=forcertl dir=rtl> | 91 <span class=forcertl dir=rtl> |
| 91 Lorem ipsum dolor sit amet, consectetur adipiscing | 92 Lorem ipsum dolor sit amet, consectetur adipiscing |
| 92 </span> | 93 </span> |
| 93 </a> | 94 </a> |
| 94 </div> | 95 </div> |
| OLD | NEW |