https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 85d0a7fe52ccc525f5637ccfd01f53be9ce22b0e authored by ffxbld on 29 February 2012, 04:48:41 UTC
Added FENNEC_11_0b5_RELEASE FENNEC_11_0b5_BUILD1 tag(s) for changeset f5de7f9efaa5. DONTBUILD CLOSED TREE a=release
Tip revision: 85d0a7f
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