https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 048d154c785685e37d388da1b9d870159459c584 authored by ffxbld on 04 August 2011, 09:25:21 UTC
Added tag FENNEC_6_0b5_BUILD1 for changeset 1e1def18cece. CLOSED TREE a=release
Tip revision: 048d154
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