https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 0e4d73b352638f4cdc463b52120e96b5448e24b9 authored by David Keeler on 22 October 2013, 21:47:01 UTC
bug 929068 - pref-off OCSP stapling due to site failures r=cviecco a=akeybl
Tip revision: 0e4d73b
placeholder-2.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder has to be used if set via javascript -->
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <script type="text/javascript">
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = "my placeholder";
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="setPlaceholder(); disableReftestWait();">
    <input type="text" id="p1" value="" placeholder="">
  </body>
</html>
back to top