https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 16c34653747e63018df9c6643ceb6866c8c8084e authored by tbirdbld on 22 May 2012, 23:58:51 UTC
Added THUNDERBIRD_13_0b3_RELEASE THUNDERBIRD_13_0b3_BUILD1 tag(s) for changeset 8072115a9e89. DONTBUILD CLOSED TREE a=release
Tip revision: 16c3465
button-focus.html
<!DOCTYPE>
<html class="reftest-wait">
  <script>
    function onloadHandler()
    {
      document.getElementById('e').setCustomValidity('foo');
      document.getElementById('e').focus();
    }
  </script>
  <body onload="onloadHandler();">
    <button id='e' onfocus="document.documentElement.className='';"></button>
  </body>
</html>
back to top