Files
ladybird/Tests/LibWeb/Layout/input/input-placeholder.html
2024-03-17 10:20:36 -04:00

11 lines
315 B
HTML

<!DOCTYPE html><html><head><style>
* {
font: 20px 'SerenitySans';
}
input {
width: 200px;
}
</style></head><body><input type="text" value="text" />
<input type="text" placeholder="This placeholder should be visible" />
<input type="text" value="text" placeholder="This placeholder should not be visible" />