https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c9ddaa7678d3312384a5025f0812b34fe527d83a authored by tbirdbld on 24 September 2014, 04:53:11 UTC
Automated checkin: version bump for thunderbird 24.8.1 release. DONTBUILD CLOSED TREE a=release
Tip revision: c9ddaa7
placeholder-4.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: value has to be shown if set via javascript -->
  <script type="text/javascript">
    function setValue()
    {
      document.getElementById('p1').value = "my value";
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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