https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d00f52912761a35d6767b6fda635fec0c9fc1007 authored by ffxbld on 01 March 2016, 08:35:42 UTC
Added FIREFOX_45_0_RELEASE FIREFOX_45_0_BUILD1 tag(s) for changeset 63bad80aea6e. DONTBUILD CLOSED TREE a=release
Tip revision: d00f529
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