https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ccab5e965f957ae0fc8070f589caf6bad150a71a authored by ffxbld on 03 June 2016, 00:54:13 UTC
Added FENNEC_47_0_RELEASE FENNEC_47_0_BUILD2 tag(s) for changeset 226d053462ea. DONTBUILD CLOSED TREE a=release
Tip revision: ccab5e9
placeholder-10.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when unfocused, if value='', newest placeholder should be shown -->
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my placeholder';
    }
    function unFocusPlaceholder()
    {
      document.getElementById('p1').blur();
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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