https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d3aa92404928933430a9638d5b475b88e03089e4 authored by tbirdbld on 28 November 2012, 21:28:42 UTC
Added THUNDERBIRD_18_0b1_RELEASE THUNDERBIRD_18_0b1_BUILD1 tag(s) for changeset a6833b9b2d51. DONTBUILD CLOSED TREE a=release
Tip revision: d3aa924
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