https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5e2b7a9f7cec89a812d0bc82ae6939d7b25d0953 authored by ffxbld on 21 July 2011, 17:54:53 UTC
Added tag FENNEC_6_0b3_BUILD1 for changeset 97f63a5dd910. CLOSED TREE a=release
Tip revision: 5e2b7a9
input.html
<!DOCTYPE>
<html class="reftest-wait">
  <script>
    function onloadHandler()
    {
      document.getElementById('e').setCustomValidity('foo');
      document.documentElement.className='';
    }
  </script>
  <body onload="onloadHandler();">
    <input id='e'>
  </body>
</html>
back to top