tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

placeholder-14.html (565B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <!-- Test: placeholder shouldn't show new lines (\n version) -->
      4  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
      5  <script type="text/javascript">
      6    function setPlaceholder()
      7    {
      8      document.getElementById('p1').placeholder = 'my\n placeholder';
      9    }
     10    function disableReftestWait()
     11    {
     12      document.documentElement.className = '';
     13    }
     14  </script>
     15  <body onload="setPlaceholder(); disableReftestWait();">
     16    <input type="text" id="p1" value="" placeholder="">
     17  </body>
     18 </html>