https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 181ce3f9c41093c8b73af00e77c0dd6432c8d79d authored by ffxbld on 29 October 2015, 09:38:35 UTC
Added FENNEC_42_0_RELEASE FENNEC_42_0_BUILD3 tag(s) for changeset 34182086e962. DONTBUILD CLOSED TREE a=release
Tip revision: 181ce3f
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