https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 4c3929bd1491ab9855ba82ceb35cea902b3b5c5f authored by ffxbld on 09 January 2015, 04:20:05 UTC
Added FENNEC_35_0_RELEASE FENNEC_35_0_BUILD1 tag(s) for changeset dfd83036d713. DONTBUILD CLOSED TREE a=release
Tip revision: 4c3929b
placeholder-9.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- Test: when focused, value reset should 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