tor-browser

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

placeholder-2-textarea.html (556B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <!-- Test: placeholder has to be used if set via javascript -->
      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 placeholder";
      9    }
     10    function disableReftestWait()
     11    {
     12      document.documentElement.className = '';
     13    }
     14  </script>
     15 
     16  <body onload="setPlaceholder(); disableReftestWait();">
     17    <textarea id="p1" placeholder=""></textarea>
     18  </body>
     19 </html>