text-overflow-on-flexbox-001.html (750B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Flexbox: text-overflow in flexbox</title> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers"> 6 <link rel="match" href="reference/text-overflow-on-flexbox-001-ref.html"> 7 <meta name="assert" content="This test ensures that the text-overflow on flexbox should have no effect"/> 8 <style> 9 div.flex { 10 display: flex; 11 width: 100px; 12 overflow: hidden; 13 text-overflow: ellipsis; 14 } 15 </style> 16 </head> 17 <body> 18 <div class="flex"> 19 AAAAAAAAAAAAAAAAAAAA 20 </div> 21 <div class="flex"> 22 <b>bbbbbbbbbbbbbbbbbbbb</b> 23 </div> 24 <div class="flex"> 25 <div>cccccccccccccccccccc</div> 26 </div> 27 <div class="flex"> 28 DDDDDDDDDDDDDDDDDDDD<b>ee</b>FFFFFFFFFFFFFFFFFFFF 29 </div> 30 </body> 31 </html>