https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a575b06296a820a61b649d345c3da8e3f2fa3d75 authored by B2G Bumper Bot on 11 May 2015, 18:32:27 UTC
Bumping manifests a=b2g-bump
Tip revision: a575b06
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