https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3916eb4d0f5f0ac852ac6e2972eebf8a3b629d1f authored by ffxbld on 09 November 2011, 17:57:19 UTC
Added tag FIREFOX_9_0b1_BUILD1 for changeset efc25177ab2d. CLOSED TREE a=release
Tip revision: 3916eb4
placeholder-14.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder shouldn't show new lines (\n version) -->
  <script type="text/javascript">
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my\n placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>
  <body onload="setPlaceholder(); disableReftestWait();">
    <input type="text" id="p1" value="" placeholder="">
  </body>
</html>
back to top