https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 171d4ac7b5c529f27694705c7f65eeffbd380725 authored by ffxbld on 27 October 2015, 00:02:27 UTC
Added FIREFOX_42_0_RELEASE FIREFOX_42_0_BUILD1 tag(s) for changeset b1a68883552e. DONTBUILD CLOSED TREE a=release
Tip revision: 171d4ac
placeholder-13.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder shouldn't show new lines (\r version) -->
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <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