https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a05ef8945e56bbc93874af664c123c126f70d1f0 authored by ffxbld on 11 August 2011, 23:11:11 UTC
Added tag FENNEC_6_0_BUILD1 for changeset 70592ed81659. CLOSED TREE a=release
Tip revision: a05ef89
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