blob: c97cb1dfcd7a6eec38867346b6ee040d949da896 [file] [log] [blame]
<script>
function finishTest()
{
document.getElementById('textarea').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 area, then all is well.</p>
<p><textarea id="textarea"></textarea></p>
</body>