https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 079a973c2c388fb725c3bef91fcea95c5290b480 authored by ffxbld on 23 October 2013, 04:20:35 UTC
Added FENNEC_25_0_RELEASE FENNEC_25_0_BUILD2 tag(s) for changeset a931cbcc99cd. DONTBUILD CLOSED TREE a=release
Tip revision: 079a973
placeholder-5.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder has to be shown if value is reseted via javascript -->
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <script type="text/javascript">
    function setValue()
    {
      document.getElementById('p1').value = "";
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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