https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5173df029664d710c8f38f63eea15781d77c1111 authored by seabld on 19 January 2012, 09:10:27 UTC
Added tag SEAMONKEY_2_7b4_RELEASE for changeset FIREFOX_10_0b5_BUILD1. CLOSED TREE a=release
Tip revision: 5173df0
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