https://github.com/mozilla/gecko-dev
Raw File
Tip revision: de4c4af4d3551ae6ee2383ffeb1ee9d3a9a42a90 authored by ffxbld on 22 February 2012, 15:36:28 UTC
Added FENNEC_11_0b4_RELEASE FENNEC_11_0b4_BUILD1 tag(s) for changeset e44ae9457087. DONTBUILD CLOSED TREE a=release
Tip revision: de4c4af
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