line-clipping.html 785 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE HTML>
  2. <!--
  3. Any copyright is dedicated to the Public Domain.
  4. http://creativecommons.org/licenses/publicdomain/
  5. Test: When we have multiple lines of text with "text-overflow: ellipsis",
  6. an ellipsis on one line shouldn't affect the other lines.
  7. -->
  8. <html>
  9. <head>
  10. <title>Testcase for bug 886313</title>
  11. <style type="text/css">
  12. @font-face {
  13. font-family: DejaVuSansMono;
  14. src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff);
  15. }
  16. .test {
  17. font: 16px DejaVuSansMono;
  18. text-overflow:ellipsis;
  19. overflow: hidden;
  20. width:55px;
  21. border: 1px solid black;
  22. margin-bottom: 2px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="test">well, hello world</div>
  28. <div class="test">well, hello world!</div>
  29. <div class="test">well, helloo world</div>
  30. </body>
  31. </html>