https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9ad326648f0aa5da41184b47edc51f085e0d6ac0 authored by Karl Tomlinson on 14 July 2015, 16:31:00 UTC
Bug 1137076 - Fix music app crashes when quickly tapping the FF button. r=edwin, a=mahe
Tip revision: 9ad3266
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