Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script> | |
| 3 if (window.internals) | |
| 4 internals.setMockHyphenation('en-us'); | |
| 5 </script> | |
| 6 <style> | |
| 7 div { | |
| 8 width: 15ch; | |
| 9 border: 2px solid blue; | |
| 10 } | |
| 11 .hyphen { | |
| 12 hyphens: auto; | |
| 13 } | |
| 14 </style> | |
| 15 <div style="text-align: justify"> | |
| 16 <div class="hyphen">This is hyphenation enabled paragraph.</div> | |
| 17 <div>This is hyphen­ation enabled paragraph.</div> | |
| 18 </div> | |
| 19 <div style="text-align: right"> | |
| 20 <div class="hyphen">This is hyphenation enabled paragraph.</div> | |
| 21 <div>This is hyphen­ation enabled paragraph.</div> | |
| 22 </div> | |
| OLD | NEW |