Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 div > div { | |
| 4 border: thin solid black; | |
| 5 font-family: 'Courier New'; | |
| 6 -webkit-hyphens: auto; | |
| 7 hyphens: auto; | |
| 8 width: 5ch; | |
| 9 } | |
| 10 .nowrap { | |
| 11 white-space: nowrap; | |
| 12 } | |
| 13 </style> | |
| 14 <script> | |
| 15 if (window.internals) | |
| 16 internals.setMockHyphenation('en-us'); | |
| 17 </script> | |
| 18 <div lang="en-us"> | |
| 19 <div>hyphenation</div> | |
| 20 <div class="nowrap">hyphenation</div> | |
| 21 </div> | |
| OLD | NEW |