https://github.com/mozilla/gecko-dev
Raw File
Tip revision: eb17cca53e5f453724c0a8ca5a12d7971e2b4442 authored by ffxbld on 16 May 2012, 00:43:38 UTC
Added FENNEC_13_0b2_RELEASE FENNEC_13_0b2_BUILD3 tag(s) for changeset 88ee14110a74. DONTBUILD CLOSED TREE a=release
Tip revision: eb17cca
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