https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 54ef78f39bd0e64a42a03a3fe081283a65c5c5cb authored by ffxbld on 02 May 2016, 23:07:07 UTC
Added FIREFOX_45_1_1esr_RELEASE FIREFOX_45_1_1esr_BUILD1 tag(s) for changeset 8b70c093909e. DONTBUILD CLOSED TREE a=release
Tip revision: 54ef78f
placeholder-focus-pref.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- Test: when focused, element should not placeholder when
       'dom.placeholder.show_on_focus' pref is false. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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