https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 475cff7aedb069e436b40cf4d7fac6858bc7b2ee authored by Nick Alexander on 06 November 2014, 15:00:11 UTC
Bug 883254 - Follow-up to add extra new line in JAR manifest. r=mfinkle, a=sledru
Tip revision: 475cff7
placeholder-20.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- Test: when focused, if value='', newest placeholder should be shown. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="focusPlaceholder();">
    <input type="text" id="p1" value="" onfocus="setPlaceholder(); disableReftestWait();">
  </body>
</html>
back to top