blob: 3274510aa9a5c3ed98c4a37021a5a0b8f49d5f4d [file] [log] [blame]
<script>
function finishTest()
{
document.getElementById('input').setAttribute('placeholder','Placeholder');
if (window.layoutTestController)
layoutTestController.notifyDone();
}
function test()
{
if (window.layoutTestController)
layoutTestController.waitUntilDone();
setTimeout(finishTest, 0);
}
</script>
<body onload="test()">
<p>If you can see the word "Placeholder" in the text field, then all is well.</p>
<p><input type="text" id="input"></p>
</body>