https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7fab965469f5c75d87c1b4b09fb04040090a00db authored by tbirdbld on 15 July 2011, 05:35:05 UTC
Added tag THUNDERBIRD_6_0b1_RELEASE for changeset ea7034005498. CLOSED TREE a=release
Tip revision: 7fab965
placeholder-9.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when focused, value reset shouldn't show placeholder. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function resetValue()
    {
      document.getElementById('p1').value = '';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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