https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8a844bfe26bfbc5c32e67ebb220ee0b731b1556f authored by ffxbld on 13 June 2011, 23:15:44 UTC
Added tag FIREFOX_5_0b6_BUILD1 for changeset 937762949167. CLOSED TREE a=release
Tip revision: 8a844bf
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