@@ -82,7 +82,7 @@ Introduction</h2>
|
82 | 82 | Note: This specification also reproduces the definition of the 'text-overflow' property
|
83 | 83 | previously defined in [[CSS-UI-3]],
|
84 | 84 | with no addition or modification,
|
85 |
| -in order to present 'text-overflow' and 'block-overflow' toghether. |
| 85 | +in order to present 'text-overflow' and 'block-ellipsis' toghether. |
86 | 86 |
|
87 | 87 | <!--
|
88 | 88 | ████████ ██ ██ ████████ ████████ ██████
|
@@ -787,25 +787,18 @@ having it overlap other text by default.
|
787 | 787 | While the content is being scrolled, implementations may adjust their rendering of ellipses (e.g. align to the box edge rather than line edge).
|
788 | 788 |
|
789 | 789 | <h3 id="block-ellipsis">
|
790 |
| -Indicating Block-Axis Overflow: the 'block-overflow' property</h3> |
| 790 | +Indicating Block-Axis Overflow: the 'block-ellipsis' property</h3> |
791 | 791 |
|
792 | 792 | <pre class=propdef>
|
793 |
| -Name: block-overflow |
794 |
| -Value: clip | ellipsis | <<string>> |
795 |
| -Initial: clip |
| 793 | +Name: block-ellipsis |
| 794 | +Value: none | auto | <<string>> |
| 795 | +Initial: none |
796 | 796 | Applies to: [=block containers=]
|
797 | 797 | Inherited: yes
|
798 | 798 | Percentages: N/A
|
799 | 799 | Computed value: specified value
|
800 | 800 | </pre>
|
801 | 801 |
|
802 |
| -Issue(2561): The names of this property and its values are not fully settled, |
803 |
| -and alternatives have been suggested. |
804 |
| -For the time being, |
805 |
| -experiemental implementations are encouraged |
806 |
| -to follow the full behavior defined by this property, |
807 |
| -but to only expose it to authors through its 'line-clamp' shorthand. |
808 |
| - |
809 | 802 | This property allows inserting content into the last line box
|
810 | 803 | before a (forced <em>or</em> unforced) <a>region break</a>
|
811 | 804 | to indicate the continuity of truncated/interrupted content.
|
@@ -821,12 +814,12 @@ Indicating Block-Axis Overflow: the 'block-overflow' property</h3>
|
821 | 814 | The inserted content is called the <dfn>block overflow ellipsis</dfn>.
|
822 | 815 | Values have the following meanings:
|
823 | 816 |
|
824 |
| -<dl dfn-for="block-overflow" dfn-type=value> |
825 |
| -<dt><dfn>clip</dfn> |
| 817 | +<dl dfn-for="block-ellipsis" dfn-type=value> |
| 818 | +<dt><dfn>none</dfn> |
826 | 819 | <dd>
|
827 | 820 | The rendering is unaffected.
|
828 | 821 |
|
829 |
| -<dt><dfn>ellipsis</dfn> |
| 822 | +<dt><dfn>auto</dfn> |
830 | 823 | <dd>
|
831 | 824 | Render an ellipsis character (U+2026)--
|
832 | 825 | or a more typographically-appropriate equivalent--
|
@@ -846,7 +839,7 @@ Indicating Block-Axis Overflow: the 'block-overflow' property</h3>
|
846 | 839 | The UA may truncate this string if it is absurdly long.
|
847 | 840 | </dl>
|
848 | 841 |
|
849 |
| -When 'block-overflow' is not ''block-overflow/clip'', |
| 842 | +When 'block-ellipsis' is not ''block-ellipsis/none'', |
850 | 843 | the <a>block overflow ellipsis</a> string
|
851 | 844 | is wrapped in an anonymous inline
|
852 | 845 | and placed at the end of the line box
|
@@ -899,7 +892,7 @@ Indicating Block-Axis Overflow: the 'block-overflow' property</h3>
|
899 | 892 |
|
900 | 893 | It also has no effect on the intrinsic size of the box:
|
901 | 894 | its <a lt="min-content size">min-content</a> and <a lt="max-content size">max-content</a> sizes
|
902 |
| -are calculated exactly as if 'block-overflow' were ''block-overflow/clip''. |
| 895 | +are calculated exactly as if 'block-ellipsis' were ''block-ellipsis/none''. |
903 | 896 |
|
904 | 897 | Note: Future specifications may extend this feature,
|
905 | 898 | for example by providing an ''::ellipsis'' pseudo-element
|
@@ -917,7 +910,7 @@ Limiting Visible Lines: the 'line-clamp' shorthand property</h3>
|
917 | 910 |
|
918 | 911 | <pre class=propdef>
|
919 | 912 | Name: line-clamp
|
920 |
| -Value: none | <<integer>> <<'block-overflow'>>? |
| 913 | +Value: none | <<integer>> <<'block-ellipsis'>>? |
921 | 914 | Initial: none
|
922 | 915 | Applies to: see individual properties
|
923 | 916 | Inherited: see individual properties
|
@@ -927,7 +920,7 @@ Limiting Visible Lines: the 'line-clamp' shorthand property</h3>
|
927 | 920 | </pre>
|
928 | 921 |
|
929 | 922 | The 'line-clamp' property is a <a>shorthand</a>
|
930 |
| -for the 'max-lines', 'block-overflow', and 'continue' properties. |
| 923 | +for the 'max-lines', 'block-ellipsis', and 'continue' properties. |
931 | 924 |
|
932 | 925 | Issue: For the time being,
|
933 | 926 | experiemental implementations are encouraged
|
@@ -950,13 +943,13 @@ Limiting Visible Lines: the 'line-clamp' shorthand property</h3>
|
950 | 943 | <dt><dfn>none</dfn>
|
951 | 944 | <dd>Sets 'max-lines' to ''max-lines/none'',
|
952 | 945 | 'continue' to ''continue/auto'',
|
953 |
| -and 'block-overflow' to ''block-overflow/clip''. |
| 946 | +and 'block-ellipsis' to ''block-ellipsis/none''. |
954 | 947 |
|
955 | 948 | <dt><dfn><<integer>></dfn>
|
956 | 949 | <dd>Sets 'max-lines' to the specified <<integer>>,
|
957 | 950 | 'continue' to ''discard'',
|
958 |
| -and the 'block-overflow' property to second component of the value |
959 |
| -or to ''block-overflow/ellipsis'' if omitted. |
| 951 | +and the 'block-ellipsis' property to second component of the value |
| 952 | +or to ''block-ellipsis/auto'' if omitted. |
960 | 953 |
|
961 | 954 | </dl>
|
962 | 955 |
|
|
0 commit comments