https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9bd243455e0cfa77c3f731a4b80860979dbcb059 authored by ffxbld on 29 July 2011, 14:26:09 UTC
Added tag FENNEC_6_0b4_BUILD1 for changeset b064fd888b6f. CLOSED TREE a=release
Tip revision: 9bd2434
button.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();">
    <button id='e'></button>
  </body>
</html>
back to top