https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 223c0d51b846ad1f2d5869fa584a34c4d75e4003 authored by tbirdbld on 12 August 2011, 12:50:35 UTC
Added tag THUNDERBIRD_6_0_RELEASE for changeset 218ed8178b1e. CLOSED TREE a=release
Tip revision: 223c0d5
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