https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7b6f3f5e9a306f5b572dfce2f75b513d98fdcd36 authored by ffxbld on 04 July 2012, 21:49:12 UTC
Added FENNEC_14_0b11_RELEASE FENNEC_14_0b11_BUILD1 tag(s) for changeset 60598398e29c. DONTBUILD CLOSED TREE a=release
Tip revision: 7b6f3f5
select-focus.html
<!DOCTYPE>
<html class="reftest-wait">
  <script>
    function onloadHandler()
    {
      document.getElementById('e').setCustomValidity('foo');
      document.getElementById('e').focus();
    }
  </script>
  <body onload="onloadHandler();">
    <select id='e' onfocus="document.documentElement.className='';"></select>
  </body>
</html>
back to top