https://github.com/mozilla/gecko-dev
Raw File
Tip revision: bcd19c5a442a22bd7e4eda04d5b07b1dd04c9acf authored by ffxbld on 15 March 2012, 02:45:23 UTC
Added FENNEC_12_0b1_RELEASE FENNEC_12_0b1_BUILD2 tag(s) for changeset 780458b51f02. DONTBUILD CLOSED TREE a=release
Tip revision: bcd19c5
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