xulscroll-ref.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!-- Any copyright is dedicated to the Public Domain.
  2. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  3. <!DOCTYPE HTML>
  4. <html><head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  6. <title>Testcase for bug 672944</title>
  7. <style type="text/css">
  8. @font-face {
  9. font-family: DejaVuSansMono;
  10. src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff);
  11. }
  12. html,body {
  13. color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono;
  14. }
  15. .bacon {
  16. white-space: nowrap;
  17. text-overflow: clip;
  18. overflow: hidden;
  19. width: 30ch;
  20. display: -moz-box;
  21. background: lime;
  22. margin-bottom: 1em;
  23. }
  24. .auto {
  25. overflow-x: auto;
  26. width: 29.5ch;
  27. padding-bottom: 2ch;
  28. }
  29. .scroll {
  30. overflow: auto;
  31. padding: 2ch;
  32. border: 3px solid black;
  33. }
  34. .scroll2 {
  35. overflow: auto;
  36. padding: 3ch;
  37. }
  38. .scroll3 {
  39. overflow: auto;
  40. padding: 2ch;
  41. text-indent: -3ch;
  42. }
  43. .scroll4 {
  44. overflow: auto;
  45. padding: 2ch 0.2ch;
  46. }
  47. span { background-color:white; position: relative; }
  48. ml3 {position: absolute; left:29ch; }
  49. #block-hover {
  50. position:fixed;
  51. top:0;left:0;width:100%;height:100%;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <div style="float:right;" dir="rtl">
  57. <div class="bacon"><span>1Beef hamburger bacon tri-tip&#x2026; jowl biltong tail ribeye ham</span></div><br>
  58. <div class="bacon auto"><span>2Beef hamburger bacon tri-&nbsp;ipJOWLBILTONG tail ribeye ham</span></div><br>
  59. <div class="bacon scroll"><span>3Beef hamburger bacon tri&nbsp;&nbsp;&nbsp;pJOWLBILTONG tail ribeye ham</span></div><br>
  60. <div class="bacon scroll2"><span>4Beef hamburger bacon tr&nbsp;&nbsp;&nbsp;&nbsp;pJOWLBILTONG tail ribeye ham</span></div><br>
  61. <div class="bacon scroll3"><span>5Beef hamburger bacon&nbsp;&nbsp;&nbsp;&nbsp;-tipJOWLBILTONG tail ribeye ham</span></div><br>
  62. <div class="bacon scroll4"><span>6Beef hamburger bacon tri-&nbsp;&nbsp;pJOWLBILTONG tail ribeye ham</span></div><br>
  63. </div>
  64. <div>
  65. <div class="bacon"><span>1Beef hamburger bacon tri-tip&#x2026; jowl biltong tail ribeye ham</span></div><br>
  66. <div class="bacon auto"><span>2Beef hamburger bacon tri-tip&nbsp;OWLBILTONG tail ribeye ham</span></div><br>
  67. <div class="bacon scroll"><span>3Beef hamburger bacon tri-tipJ WLBILTONG tail ribeye ham</span></div><br>
  68. <div class="bacon scroll2"><span>4Beef hamburger bacon tri-tipJO LBILTONG tail ribeye ham</span></div><br>
  69. <div class="bacon scroll3"><span>5Beef hamburger bacon tri-tipJOWL ILTONG tail ribeye ham</span></div><br>
  70. <div class="bacon scroll4"><span>6Beef hamburger bacon tri-ti JOWLBILTONG tail ribeye ham</span></div><br>
  71. </div>
  72. <div id="block-hover"></div>
  73. </body>
  74. </html>