https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1fe15fe9c37a836d4bb21a208493af3d0788c84b authored by B2G Bumper Bot on 09 June 2014, 13:47:09 UTC
Bumping manifests a=b2g-bump
Tip revision: 1fe15fe
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