https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7cfc8cc58c0474b540aef164bcd5604800cca309 authored by tbirdbld on 18 November 2013, 16:17:32 UTC
Added THUNDERBIRD_24_1_1_RELEASE THUNDERBIRD_24_1_1_BUILD1 tag(s) for changeset 73cf17fcf5d5. DONTBUILD CLOSED TREE a=release
Tip revision: 7cfc8cc
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