https://github.com/mozilla/gecko-dev
Raw File
Tip revision: da87321b8481318f4038412ca74e18c8850745b5 authored by seabld on 26 January 2013, 03:39:31 UTC
Added tag SEAMONKEY_2_16b2_RELEASE for changeset FIREFOX_19_0b3_BUILD1. CLOSED TREE a=release
Tip revision: da87321
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