https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3d13ac1353756300f799068d92c206e39dadbf54 authored by ffxbld on 25 July 2012, 02:02:14 UTC
Added FENNEC_15_0b2_RELEASE FENNEC_15_0b2_BUILD1 tag(s) for changeset 166ba24e4239. DONTBUILD CLOSED TREE a=release
Tip revision: 3d13ac1
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