https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 723010b136d5b145c15e1ef215bbfdcfce20965a authored by ffxbld on 08 January 2013, 21:18:26 UTC
Added FENNEC_19_0b1_RELEASE FENNEC_19_0b1_BUILD2 tag(s) for changeset 50cbe5a371e2. DONTBUILD CLOSED TREE a=release
Tip revision: 723010b
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