https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 437e14f444032f91bc3cb2f81219295a6c33cd98 authored by ffxbld on 20 April 2016, 21:12:29 UTC
Added FIREFOX_38_8_0esr_RELEASE FIREFOX_38_8_0esr_BUILD1 tag(s) for changeset 915e8b26a01e. DONTBUILD CLOSED TREE a=release
Tip revision: 437e14f
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