https://github.com/mozilla/gecko-dev
Raw File
Tip revision: caa86f46ee9032ff414bcbb095f3ea5b0f7ecf67 authored by Ryan VanderMeulen on 18 March 2014, 01:37:38 UTC
Merge b2g28 to v1.3t. a=merge
Tip revision: caa86f4
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