зеркало из https://github.com/mozilla/gecko-dev.git
27 строки
758 B
HTML
27 строки
758 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css"> p { margin: 5px 1em; width: 0; } </style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- U+2024 is ONE DOT LEADER -->
|
|
<p>abcdef․․․abcdef</p>
|
|
<p>abcdef․abcdef</p>
|
|
<p>abcdef․ abcdef</p>
|
|
<p>abcdef ․abcdef</p> <!-- no break after the leader in this case -->
|
|
|
|
<!-- U+2025 is TWO DOT LEADER -->
|
|
<p>abcdef‥‥‥abcdef</p>
|
|
<p>abcdef‥abcdef</p>
|
|
<p>abcdef‥ abcdef</p>
|
|
<p>abcdef ‥abcdef</p> <!-- no break after the leader in this case -->
|
|
|
|
<!-- U+2026 is HORIZONTAL ELLIPSIS -->
|
|
<p>abcdef………abcdef</p>
|
|
<p>abcdef…abcdef</p>
|
|
<p>abcdef… abcdef</p>
|
|
<p>abcdef …abcdef</p> <!-- no break after the ellipsis in this case -->
|
|
|
|
</body>
|
|
</html>
|