Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea-placeholder-set-attribute.html
blobeac5d7a153cfa389e502ae082f1fc76682d2e7ca
1 <script>
3 function finishTest()
5 document.getElementById('textarea').setAttribute('placeholder','Placeholder');
6 if (window.testRunner)
7 testRunner.notifyDone();
10 function test()
12 if (window.testRunner)
13 testRunner.waitUntilDone();
14 setTimeout(finishTest, 0);
17 </script>
18 <body onload="test()">
19 <p>If you can see the word "Placeholder" in the text area, then all is well.</p>
20 <p><textarea id="textarea"></textarea></p>
21 </body>