tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

leaders-1.html (758B)


      1 <html>
      2 <head>
      3 <style type="text/css"> p { margin: 5px 1em; width: 0; } </style>
      4 </head>
      5 <body>
      6 
      7 <!-- U+2024 is ONE DOT LEADER -->
      8 <p>abcdef&#x2024;&#x2024;&#x2024;abcdef</p>
      9 <p>abcdef&#x2024;abcdef</p>
     10 <p>abcdef&#x2024; abcdef</p>
     11 <p>abcdef &#x2024;abcdef</p> <!-- no break after the leader in this case -->
     12 
     13 <!-- U+2025 is TWO DOT LEADER -->
     14 <p>abcdef&#x2025;&#x2025;&#x2025;abcdef</p>
     15 <p>abcdef&#x2025;abcdef</p>
     16 <p>abcdef&#x2025; abcdef</p>
     17 <p>abcdef &#x2025;abcdef</p> <!-- no break after the leader in this case -->
     18 
     19 <!-- U+2026 is HORIZONTAL ELLIPSIS -->
     20 <p>abcdef&#x2026;&#x2026;&#x2026;abcdef</p>
     21 <p>abcdef&#x2026;abcdef</p>
     22 <p>abcdef&#x2026; abcdef</p>
     23 <p>abcdef &#x2026;abcdef</p> <!-- no break after the ellipsis in this case -->
     24 
     25 </body>
     26 </html>