https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 4de65ed647cfede012c65e5b42268b52a3c32ff3 authored by seabld on 31 January 2013, 03:42:17 UTC
Added tag SEAMONKEY_2_16b3_RELEASE for changeset FIREFOX_19_0b4_BUILD1. CLOSED TREE a=release
Tip revision: 4de65ed
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