https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9be20947214367a453cb673ac6e86634c70765af authored by ffxbld on 10 February 2016, 23:37:22 UTC
Added FIREFOX_44_0_2_RELEASE FIREFOX_44_0_2_BUILD3 tag(s) for changeset 60e96806ff1c. DONTBUILD CLOSED TREE a=release
Tip revision: 9be2094
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