https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a616b6dc4b1f81525d747ecc40fb12981897fb3b authored by ffxbld on 01 February 2012, 23:13:12 UTC
Added tag FENNEC_11_0b1_BUILD1 for changeset 53451b6a6f9d. CLOSED TREE a=release
Tip revision: a616b6d
placeholder-13.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder shouldn't show new lines (\r version) -->
  <script type="text/javascript">
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my\r placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>
  <body onload="setPlaceholder(); disableReftestWait();">
    <input type="text" id="p1" value="" placeholder="">
  </body>
</html>
back to top