Skip to content

Commit 669d7a1

Browse files
committed
[css-ui-4] Clarify the applicability of the caret-* properties
See #11335
1 parent f673507 commit 669d7a1

File tree

1 file changed

+70
-51
lines changed

1 file changed

+70
-51
lines changed

css-ui-4/Overview.bs

+70-51
Original file line numberDiff line numberDiff line change
@@ -1079,26 +1079,57 @@ Cursor of the canvas</h5>
10791079
<h3 id="insertion-caret">
10801080
Insertion caret</h3>
10811081

1082+
The <dfn lt="insertion caret|caret">insertion caret</dfn> (or “caret” for short)
1083+
is a visible indicator of the insertion point in an element that [=accepts input=],
1084+
where text (and potentially other content) can be inserted by the user.
1085+
The 'caret-color', 'caret-animation', and 'caret-shape' properties
1086+
give the author some amount of control over the appearance of the [=caret=].
1087+
1088+
Elements are considered to <dfn>accept input</dfn>
1089+
if they are either an [=editable element=] or a descendent thereof,
1090+
excluding any such element where the [=used value=] of 'user-select' is ''user-select/none'',
1091+
as well as subtrees rooted at an HTML element with a {{ElementContentEditable/contentEditable}} attribute set to {{ElementContentEditable/contentEditable/false}}.
1092+
1093+
Some user agents have other user interface mechanisms
1094+
with a similar appearance,
1095+
also occasionally referred to as “carets”.
1096+
For example, some UAs can show a “navigation caret”,
1097+
which acts similarly to an [insertion caret=]
1098+
but can be moved around in non-editable text.
1099+
The 'caret-color', 'caret-animation', and 'caret-shape' properties
1100+
are not intended to apply to such mechanisms
1101+
nor outside of [=editable elements=],
1102+
though user agents may choose to take them into account.
1103+
Whether to do so and to what extend is up to the user agent.
1104+
1105+
Note: The cursor image shown
1106+
when hovering over text when the 'cursor' property is ''cursor/auto'',
1107+
or when hovering over an element where the 'cursor' property is ''cursor/text'' or ''cursor/vertical-text'',
1108+
though it sometimes resembles a caret,
1109+
is not a caret (it's a cursor).
1110+
10821111
<h4 id="caret-color" caniuse="css-caret-color">
10831112
Coloring the Insertion Caret: the 'caret-color' property</h4>
10841113

10851114
<pre class="propdef">
10861115
Name: caret-color
10871116
Value: auto | <<color>>
10881117
Initial: auto
1089-
Applies to: all elements
1118+
Applies to: elements that [=accept input=]
10901119
Inherited: yes
10911120
Percentages: N/A
10921121
Computed value: The computed value for ''caret-color/auto'' is ''caret-color/auto''.
10931122
For <<color>> values, see [[CSS-COLOR-4#resolving-color-values]].
10941123
Animation Type: by computed value
10951124
</pre>
10961125

1126+
This property controls the color of the [=insertion caret=].
1127+
10971128
<dl>
10981129
<dt>auto
10991130
<dd>
11001131
User agents should use ''currentColor''.
1101-
User agents may automatically adjust the color of caret
1132+
User agents may automatically adjust the color of [=caret=]
11021133
to ensure good visibility and contrast with the surrounding content,
11031134
possibly based on the currentColor, background, shadows, etc.
11041135

@@ -1108,21 +1139,9 @@ Coloring the Insertion Caret: the 'caret-color' property</h4>
11081139

11091140
<dt><<color>>
11101141
<dd>
1111-
The insertion caret is colored with the specified color.
1142+
The [=caret=] is colored with the specified color.
11121143
</dl>
11131144

1114-
The caret is a visible indicator of the insertion point in an element where text (and potentially other content) is inserted by the user. This property controls the color of that visible indicator.
1115-
1116-
Note: UAs might have additional things that count as “carets”.
1117-
For example, some UAs can show a “navigation caret”,
1118-
which acts similarly to an insertion caret
1119-
but can be moved around in non-editable text
1120-
and is functionally a caret.
1121-
On the other hand, the cursor image shown
1122-
when hovering over text when the 'cursor' property is ''cursor/auto'',
1123-
or when hovering over an element where the 'cursor' property is ''cursor/text'' or ''cursor/vertical-text'',
1124-
though it sometimes resembles a caret, is not a caret (it's a cursor).
1125-
11261145
<div class="example">
11271146
Example: a textarea with
11281147
<code class="lang-css">caret-color:#00aacc;</code>
@@ -1140,39 +1159,39 @@ Animation of the insertion caret: 'caret-animation'</h4>
11401159
Name: caret-animation
11411160
Value: auto | manual
11421161
Initial: auto
1143-
Applies to: elements that accept input
1162+
Applies to: elements that [=accept input=]
11441163
Inherited: yes
11451164
Percentages: N/A
11461165
Computed value: specified keyword
11471166
Animation type: discrete
11481167
</pre>
11491168

11501169
On most platforms and in most UAs,
1151-
the text insertion caret blinks.
1170+
the [=insertion caret=] blinks.
11521171
This property allows the author
1153-
to take control over the way the caret is animated.
1172+
to take control over the way the [=caret=] is animated.
11541173

11551174
<dl dfn-type=value dfn-for=caret-animation>
11561175
<dt><dfn>auto</dfn>
11571176
<dd>
1158-
The UA determines how the caret should be animated, if at all,
1177+
The UA determines how the [=caret=] should be animated, if at all,
11591178
as well as the speed of any such animation.
11601179
It should match platform conventions and settings,
11611180
and may be adjusted based on context.
11621181

1163-
Note: This is typically rendered as a blinking caret.
1182+
Note: This is typically rendered as a blinking [=caret=].
11641183
Fading in and out instead of blinking is a variant that appears in some environments.
11651184

11661185
<dt><dfn>manual</dfn>
11671186
<dd>
1168-
The UA must not animate the caret.
1187+
The UA must not animate the [=caret=].
11691188

1170-
Note: This is only about UA driven animations of the caret.
1171-
When CSS animations are used to animate the caret color,
1189+
Note: This is only about UA driven animations of the [=caret=].
1190+
When CSS animations are used to animate the [=caret=] color,
11721191
they apply normally.
11731192
</dl>
11741193

1175-
Note: It is recommended for authors to stop the caret from blinking or fading
1194+
Note: It is recommended for authors to stop the [=caret=] from blinking or fading
11761195
using ''caret-animation: manual''
11771196
when applying custom animations using [[CSS3-ANIMATIONS]],
11781197
to prevent the UA's animation and the CSS animation to interfere.
@@ -1181,7 +1200,7 @@ Animation of the insertion caret: 'caret-animation'</h4>
11811200

11821201
<div class=example>
11831202
A user who is disturbed by or has adverse reactions to blinking or flashing visuals
1184-
may want to make all carets static and non-blinking,
1203+
may want to make all [=carets=] static and non-blinking,
11851204
regardless of platform defaults or author settings.
11861205
This can be accomplished with the following rule in the user stylesheet.
11871206

@@ -1198,14 +1217,14 @@ Animation of the insertion caret: 'caret-animation'</h4>
11981217
should provide a setting to disable
11991218
<a href="https://www.w3.org/TR/WCAG20/#blinksdef">blinking</a>,
12001219
<a href="https://www.w3.org/TR/WCAG20/#flash-def">flashing</a>
1201-
and animated carets.
1220+
and animated [=carets=].
12021221
UAs that do have an editable user stylesheet may want to provide this setting as well.
12031222
See [[WCAG]] <a href="https://www.w3.org/TR/WCAG20/#time-limits-pause">Guideline 2.2</a>
12041223
and <a href="https://www.w3.org/TR/WCAG20/#seizure">Guideline 2.3</a>
12051224
for details.
12061225

12071226
<div class=example>
1208-
Typically, the caret blinks on and off.
1227+
Typically, the [=caret=] blinks on and off.
12091228
This makes it alternate between 2 colors.
12101229
<pre><code class="lang-css">
12111230
textarea {
@@ -1242,7 +1261,7 @@ Animation of the insertion caret: 'caret-animation'</h4>
12421261
</div>
12431262

12441263
<div class=advisement>
1245-
If a user agent is unwilling to yield control of caret animations
1264+
If a user agent is unwilling to yield control of [=caret=] animations
12461265
to page authors and would not honor ''caret-animation: manual'',
12471266
it must not implement the property at all.
12481267

@@ -1260,15 +1279,15 @@ Shape of the insertion caret: 'caret-shape'</h4>
12601279
Name: caret-shape
12611280
Value: auto | bar | block | underscore
12621281
Initial: auto
1263-
Applies to: elements that accept input
1282+
Applies to: elements that [=accept input=]
12641283
Inherited: yes
12651284
Percentages: N/A
12661285
Computed value: specified keyword
12671286
Animation type: by computed value
12681287
</pre>
12691288

12701289
This property allows authors to specify
1271-
the desired shape of the text insertion caret.
1290+
the desired shape of the [=insertion caret=].
12721291

12731292
Within the context of this definition, <dfn>character</dfn> is
12741293
to be understood as <em>extended grapheme cluster</em>,
@@ -1278,71 +1297,71 @@ Shape of the insertion caret: 'caret-shape'</h4>
12781297
<dl dfn-type=value dfn-for=caret-shape>
12791298
<dt><dfn>auto</dfn>
12801299
<dd>
1281-
The UA determines the shape of the caret.
1300+
The UA determines the shape of the [=caret=].
12821301
It should match platform conventions,
12831302
and may be adjusted based on context.
12841303
For example, if a UA switches between insert mode and overtype mode when the
12851304
user presses the <em>insert</em> key on their keyboard,
1286-
it may show a ''caret-shape/bar'' caret in insert mode,
1287-
and a ''caret-shape/block'' caret in overtype mode.
1305+
it may show a ''caret-shape/bar'' [=caret=] in insert mode,
1306+
and a ''caret-shape/block'' [=caret=] in overtype mode.
12881307

12891308
<dt><dfn>bar</dfn>
12901309
<dd>
1291-
The UA must render the text insertion caret
1310+
The UA must render the [=insertion caret=]
12921311
as a thin bar placed at the insertion point.
12931312
This means it is between, before, or after <a>characters</a>, not over them.
12941313
It should be perpendicular to the inline progression direction,
12951314
although UAs may render it slanted when inserting italic or oblique text.
12961315

12971316
<dt><dfn>block</dfn>
12981317
<dd>
1299-
The UA must render the text insertion caret
1318+
The UA must render the [=insertion caret=]
13001319
as a rectangle overlapping the next <a>visible character</a> following the insertion point.
13011320
If there is no <a>visible character</a> after the insertion point,
13021321
the UA must render the caret after the last <a>visible character</a>.
13031322
UAs may render it as a slanted rectangle when inserting italic or oblique text.
13041323

13051324
<dt><dfn>underscore</dfn>
13061325
<dd>
1307-
The UA must render the text insertion caret
1326+
The UA must render the [=insertion caret=]
13081327
as a thin line <a>under</a> (as defined in [[!CSS-WRITING-MODES-3]]
13091328
the next <a>visible character</a> following the insertion point.
13101329
If there is no <a>visible character</a> after the insertion point,
13111330
the UA must render the caret after the last <a>visible character</a>.
13121331
</dl>
13131332

1314-
The width of the ''caret-shape/block'' and ''caret-shape/underscore'' carets
1333+
The width of the ''caret-shape/block'' and ''caret-shape/underscore'' [=carets=]
13151334
should be the advance measure of the next <a>visible character</a> after the insertion point,
13161335
or ''1ch'' if there is no next <a>visible character</a>
13171336
or if this information is impractical to determine.
13181337

1319-
When determining the orientation and appearance of the caret,
1338+
When determining the orientation and appearance of the [=caret=],
13201339
UAs must take into account the <a>writing mode</a> [[!CSS-WRITING-MODES-3]]
13211340
and must apply transformations [[!CSS-TRANSFORMS-1]].
13221341
If the edited text is laid out on a path,
13231342
for instance by using the SVG <{textPath}> element,
13241343
UAs should also account for this.
13251344

1326-
The thickness of ''caret-shape/bar'' and ''caret-shape/underscore'' carets--
1327-
as well as that of ''caret-shape/auto'' carets with a similar rendering--
1345+
The thickness of ''caret-shape/bar'' and ''caret-shape/underscore'' [=carets=]--
1346+
as well as that of ''caret-shape/auto'' [=carets=] with a similar rendering--
13281347
is determined by the user agent.
13291348
When practical, the user agent should choose a thickness that ensures
1330-
the caret remains visible even if it has been scaled down
1349+
the [=caret=] remains visible even if it has been scaled down
13311350
via means such as transformations [[CSS-TRANSFORMS-1]].
13321351

1333-
The stacking position of the caret is left undefined within the following constraints:
1352+
The stacking position of the [=caret=] is left undefined within the following constraints:
13341353

13351354
<ul>
13361355
<li>
1337-
The caret must not be obscured by the background of the element.
1356+
The [=caret=] must not be obscured by the background of the element.
13381357

13391358
<li>
1340-
UAs must render ''caret-shape/block'' carets
1341-
so that the character it overlaps with is not obscured by the caret.
1359+
UAs must render ''caret-shape/block'' [=carets=]
1360+
so that the character it overlaps with is not obscured by the [=caret=].
13421361
</ul>
13431362

13441363
<div class=example>
1345-
This illustrates the typical appearance of the various caret shapes.
1364+
This illustrates the typical appearance of the various [=caret=] shapes.
13461365
In each of the sample renderings below,
13471366
the insertion point is between the letters u and m.
13481367

@@ -1366,7 +1385,7 @@ Shape of the insertion caret: 'caret-shape'</h4>
13661385
<tr>
13671386
<th>'caret-shape'
13681387
<th>Sample rendering
1369-
<th>Your browser<br>(focus each cell to see the caret)
1388+
<th>Your browser<br>(focus each cell to see the [=caret=])
13701389

13711390
<tr>
13721391
<td>''bar''
@@ -1386,7 +1405,7 @@ Shape of the insertion caret: 'caret-shape'</h4>
13861405
</div>
13871406

13881407
<div class=example>
1389-
''caret-shape/underscore'' or ''caret-shape/block'' carets are commonly used
1408+
''caret-shape/underscore'' or ''caret-shape/block'' [=carets=] are commonly used
13901409
in terminals and command lines,
13911410
as in this example.
13921411
<pre><code class="lang-css">
@@ -1425,7 +1444,7 @@ Shape of the insertion caret: 'caret-shape'</h4>
14251444
Name: caret
14261445
Value: <<'caret-color'>> || <<'caret-animation'>> || <<'caret-shape'>>
14271446
Initial: auto
1428-
Applies to: elements that accept input
1447+
Applies to: elements that [=accept input=]
14291448
Inherited: yes
14301449
Percentages: N/A
14311450
</pre>
@@ -1435,9 +1454,9 @@ Shape of the insertion caret: 'caret-shape'</h4>
14351454
Omitted values are set to their initial values.
14361455

14371456
<div class=example>
1438-
This example illustrates using the various caret related properties
1457+
This example illustrates using the various [=caret=] related properties
14391458
in combination.
1440-
They are used here to simulate the appearance of the caret
1459+
They are used here to simulate the appearance of the [=caret=]
14411460
on an old phosphor computer monitor.
14421461

14431462
<pre><code class="lang-css">

0 commit comments

Comments
 (0)