https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 51bb42c7e1061cedbb9ebe6091da7040f204fc3c authored by tbirdbld on 22 August 2012, 01:58:16 UTC
Added THUNDERBIRD_15_0b5_RELEASE THUNDERBIRD_15_0b5_BUILD1 tag(s) for changeset 205115c395d4. DONTBUILD CLOSED TREE a=release
Tip revision: 51bb42c
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