Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!DOCTYPE html>
<style>
input::placeholder { color: red; }
input.green::placeholder { color: green; }
</style>
<input type="number" placeholder="This should be green">
<script>
var i = document.querySelector("input");
var s = getComputedStyle(i, "::placeholder");
// Make sure we've computed the old color.
var oldColor = s.color;
i.className = "green";
</script>