https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 813838b3c74c9cb2526b149587f60026fdc2dd13 authored by B2G Bumper Bot on 12 January 2015, 21:00:38 UTC
Bumping manifests a=b2g-bump
Tip revision: 813838b
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