https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c06f3223ffeb6240f19871a4b507981784723ab0 authored by ffxbld on 15 March 2014, 15:34:08 UTC
Added FIREFOX_24_4_0esr_RELEASE FIREFOX_24_4_0esr_BUILD1 tag(s) for changeset 1dc61f927007. DONTBUILD CLOSED TREE a=release
Tip revision: c06f322
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