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-and-placeholder.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Interaction of ::first-line and ::placeholder</title>
<link rel="match" href="first-line-and-placeholder-ref.html">
<meta name="assert" content="Tests ::placeholder interaction with ::first-line pseudo element">
<style>
input::first-line {
background-color: initial;
}
input::placeholder {
color: red;
}
</style>
<form>
<input placeholder="this text should be red">
</form>