https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 701fd00674a173a0960a643c596659ce913516b3 authored by ffxbld on 26 August 2015, 09:31:55 UTC
Added FIREFOX_40_0_3_RELEASE FIREFOX_40_0_3_BUILD1 tag(s) for changeset 5500ee2a6206. DONTBUILD CLOSED TREE a=release
Tip revision: 701fd00
input.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();">
    <input id='e'>
  </body>
</html>
back to top