https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b211c3525696975650b661591e57612d3f066279 authored by tbirdbld on 30 October 2012, 19:45:06 UTC
Added THUNDERBIRD_17_0b2_RELEASE THUNDERBIRD_17_0b2_BUILD1 tag(s) for changeset 2584cac54ea7. DONTBUILD CLOSED TREE a=release
Tip revision: b211c35
placeholder-20.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- Test: when focused, if value='', newest placeholder should be shown. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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