https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1119b8729a7a78f5a76aac71fd46795094cfa56d authored by ffxbld on 22 September 2011, 21:45:23 UTC
Added tag FENNEC_7_0_BUILD2 for changeset d4f603adb72c. CLOSED TREE a=release
Tip revision: 1119b87
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