https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 437e14f444032f91bc3cb2f81219295a6c33cd98 authored by ffxbld on 20 April 2016, 21:12:29 UTC
Added FIREFOX_38_8_0esr_RELEASE FIREFOX_38_8_0esr_BUILD1 tag(s) for changeset 915e8b26a01e. DONTBUILD CLOSED TREE a=release
Tip revision: 437e14f
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