https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1f905de58fa9d5429906034aa8ac4e6f53fcf39c authored by ffxbld on 24 March 2017, 09:51:29 UTC
Added FENNEC_52_0_2_RELEASE FENNEC_52_0_2_BUILD1 tag(s) for changeset 9a3506a37e59. DONTBUILD CLOSED TREE a=release
Tip revision: 1f905de
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