https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c87cf403ae37028950df3b015820d9e4c620bd95 authored by seabld on 13 November 2012, 23:39:38 UTC
Added tag SEAMONKEY_2_14b5_RELEASE for changeset FIREFOX_17_0b6_BUILD1. CLOSED TREE a=release
Tip revision: c87cf40
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