no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 1127107-2-capitalize.html
bloba0ed3f9700ec73f616ba312eb1f85074facf7965
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div.test {
6 /* Author expects this to prevent wrapping, and may add
7 "overflow:hidden;text-overflow:ellipsis" for nice effect: */
8 white-space: nowrap;
10 /* BUT these (combined) seem to allow wrapping: */
11 text-transform: capitalize;
12 word-break: break-all;
14 width: 200px;
15 border: 1px solid black;
17 </style>
18 </head>
19 <body>
20 <div class="test">
21 Does this text wrap? Does this text wrap? Does this text wrap?
22 Does this text wrap?
23 </div>
24 </body>
25 </html>