https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 44eea8cdbec29781b472cb1b0a62d261bb427a32 authored by calbld on 23 September 2011, 11:56:53 UTC
Added tag CALENDAR_1_0b7_RELEASE for changeset 273977a2c0ea. CLOSED TREE a=release
Tip revision: 44eea8c
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