Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/first-line-input-textarea.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>::first-line on input / textarea</title>
<link rel="match" href="input-textarea-ref.html">
<style>
input::first-line,
textarea::first-line {
color: red;
}
</style>
<input value="Some text">
<textarea>
Some more text
</textarea>