Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[css-forms-1] Add textarea to pseudo elements table #11900

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion css-forms-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,10 @@ Markup Shorthands: css yes, markdown yes
<td>`<input type=color>`</td>
<td>''::color-swatch''</td>
</tr>
<tr>
<td>`<textarea>`</td>
<td>See [[#textarea-pseudos]]</td>
</tr>
<tr>
<td>`<select>`</td>
<td>''::picker-icon''</td>
Expand Down Expand Up @@ -370,6 +374,11 @@ Markup Shorthands: css yes, markdown yes
## Styling Parts for Text Fields: the ''::field-text'' and ''::clear-icon'' pseudo-elements ## {#field-pseudos}

<dl export>
<dt><dfn>''::placeholder''</dfn>
<dd>
The ''::placeholder'' pseudo-element represents
the portion of the <{input}> that contains the placeholder text.

<dt><dfn>::field-text</dfn>
<dd>
The ''::field-text'' pseudo-element represents
Expand All @@ -389,7 +398,27 @@ Markup Shorthands: css yes, markdown yes

ISSUE: Collect parts used by autofill.

ISSUE: Define something for the password visibility toggle for user agents implementing it?
ISSUE(11845): Define something for the password visibility toggle for user agents implementing it?

ISSUE(11844): Define how `::placeholder` interacts with `::field-text`.

## Styling Parts for textareas: the ''::placeholder'' and ''::field-text'' pseudo-elements ## {#textarea-pseudos}

<dl export>
<dt><span>''::placeholder''</span>
<dd>
The ''::placeholder'' pseudo-element represents
the portion of the <{textarea}> that contains the placeholder text.

<dt><span>''::field-text''</span>
<dd>
The ''::field-text'' pseudo-element represents
the portion of the <{textarea}> that contains the editable text.
</dl>

ISSUE(11850): Define something for the resizer.

ISSUE(11844): Define how `::placeholder` interacts with `::field-text`.

## Styling Parts for Number Fields: the ''::step-control'', ''::step-up'' and ''::step-down'' pseudo-elements ## {#number-pseudos}

Expand Down