https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d3aa92404928933430a9638d5b475b88e03089e4 authored by tbirdbld on 28 November 2012, 21:28:42 UTC
Added THUNDERBIRD_18_0b1_RELEASE THUNDERBIRD_18_0b1_BUILD1 tag(s) for changeset a6833b9b2d51. DONTBUILD CLOSED TREE a=release
Tip revision: d3aa924
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