https://github.com/mozilla/gecko-dev
Raw File
Tip revision: fd23726f50a568fcff16576b3096067d51375a64 authored by tbirdbld on 12 July 2012, 02:50:53 UTC
Added THUNDERBIRD_14_0b5_RELEASE THUNDERBIRD_14_0b5_BUILD1 tag(s) for changeset 58fc5e165c31. DONTBUILD CLOSED TREE a=release
Tip revision: fd23726
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