123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html class="reftest-wait">
- <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
- <!-- Test: when focused, if value='', newest placeholder should be shown. -->
- <script type="text/javascript">
- function focusPlaceholder()
- {
- document.getElementById('p1').focus();
- }
- function setPlaceholder()
- {
- document.getElementById('p1').placeholder = 'my placeholder';
- }
- function disableReftestWait()
- {
- document.documentElement.className = '';
- }
- </script>
- <body onload="focusPlaceholder();">
- <input type="text" id="p1" value="" onfocus="setPlaceholder(); disableReftestWait();">
- </body>
- </html>
|