https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7b4407f0efa26857511e37e3acadace05b645f16 authored by ffxbld on 06 October 2011, 01:00:13 UTC
Added tag FENNEC_8_0b2_BUILD1 for changeset 747c148bea02. CLOSED TREE a=release
Tip revision: 7b4407f
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