https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 776606f924168b74b3af23aa49f39369402f954f authored by ffxbld on 19 October 2011, 14:10:26 UTC
Added tag FENNEC_8_0b4_BUILD1 for changeset 85d90596cab0. CLOSED TREE a=release
Tip revision: 776606f
input-focus.html
<!DOCTYPE>
<html class="reftest-wait">
  <script>
    function onloadHandler()
    {
      document.getElementById('e').setCustomValidity('foo');
      document.getElementById('e').focus();
    }
  </script>
  <body onload="onloadHandler();">
    <input id='e' onfocus="document.documentElement.className='';">
  </body>
</html>
back to top