https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a2b76b0564f163d3a1ba93e3b55a2fba1305d39b authored by tbirdbld on 20 June 2012, 03:39:11 UTC
Added THUNDERBIRD_14_0b3_RELEASE THUNDERBIRD_14_0b3_BUILD1 tag(s) for changeset 7945471fc07f. DONTBUILD CLOSED TREE a=release
Tip revision: a2b76b0
placeholder-20.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 = 'new placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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