https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ecf419356aaa546cb6a653612e622c23976da972 authored by ffxbld on 10 December 2015, 15:48:02 UTC
Added FIREFOX_38_5_0esr_RELEASE FIREFOX_38_5_0esr_BUILD1 tag(s) for changeset 033aa21860a4. DONTBUILD CLOSED TREE a=release
Tip revision: ecf4193
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