https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2e97aba3a36b42edd494e9040d83da4039197afc authored by ffxbld on 24 September 2014, 00:30:28 UTC
Added FENNEC_32_0_3_RELEASE FENNEC_32_0_3_BUILD1 tag(s) for changeset 56387c7f043a. DONTBUILD CLOSED TREE a=release
Tip revision: 2e97aba
select.html
<!DOCTYPE>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function onloadHandler()
    {
      document.getElementById('e').setCustomValidity('foo');
      document.documentElement.className='';
    }
  </script>
  <body onload="onloadHandler();">
    <select id='e'></select>
  </body>
</html>
back to top