https://github.com/mozilla/gecko-dev
Raw File
Tip revision: fe30cec62a8deb9f030011cb6cbe8bb4e61f7758 authored by ffxbld on 06 August 2015, 07:14:32 UTC
Added FIREFOX_38_1_1esr_RELEASE FIREFOX_38_1_1esr_BUILD2 tag(s) for changeset 63989e580394. DONTBUILD CLOSED TREE a=release
Tip revision: fe30cec
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