https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9410736ee9cc0d5c93008c72269a91c6cd9be233 authored by Kai Engert on 13 June 2012, 15:42:39 UTC
backing out my previous commit 853ac25ddd18 which accidentally landed on this release branch, a=none
Tip revision: 9410736
placeholder-22.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when focused, placeholder update shouldn't show placeholder. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = '';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="focusPlaceholder();">
    <input type="text" id="p1" value="" placeholder="my placeholder" onfocus="setPlaceholder(); disableReftestWait();">
  </body>
</html>
back to top