blob: 6300a57506809895d2f22d896ff677a0d29396df [file] [log] [blame]
<input id="input">
<script>
// Make sure that the placeholder is not in visible mode when the suggested value
// is set to empty after being set to a non empty value.
internals.setSuggestedValue(input, 'Springfield');
internals.setSuggestedValue(input, '');
</script>
<style>
:placeholder-shown {
background-color: red;
}
</style>