tor-browser

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

placeholder-5.html (567B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <!-- Test: placeholder has to be shown if value is reseted via javascript -->
      4  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
      5  <script type="text/javascript">
      6    function setValue()
      7    {
      8      document.getElementById('p1').value = "";
      9    }
     10    function disableReftestWait()
     11    {
     12      document.documentElement.className = '';
     13    }
     14  </script>
     15 
     16  <body onload="setValue(); disableReftestWait();">
     17    <input type="text" id="p1" value="my value" placeholder="my placeholder">
     18  </body>
     19 </html>