https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 0839375bf55faaf7bce0dd205124d1e5c1449eaf authored by ffxbld on 14 October 2015, 02:27:25 UTC
Added FENNEC_41_0_2_RELEASE FENNEC_41_0_2_BUILD1 tag(s) for changeset 87ce8a94ccb7. DONTBUILD CLOSED TREE a=release
Tip revision: 0839375
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