https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d07d6c988373d1af2d64a1dd6372ae344c5e34cf authored by seabld on 15 July 2012, 11:08:11 UTC
Added tag SEAMONKEY_2_11_RELEASE for changeset FIREFOX_14_0_1_BUILD1. CLOSED TREE a=release
Tip revision: d07d6c9
placeholder-10.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when unfocused, 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 unFocusPlaceholder()
    {
      document.getElementById('p1').blur();
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="focusPlaceholder();">
    <input type="text" id="p1" value="" placeholder="old placeholder" onfocus="setPlaceholder(); unFocusPlaceholder(); disableReftestWait();">
  </body>
</html>
back to top