https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 74e86a41a9eddc887be949e29ad926f0f118c2c5 authored by B2G Bumper Bot on 21 September 2015, 12:31:33 UTC
Bumping manifests a=b2g-bump
Tip revision: 74e86a4
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