tor-browser

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

placeholder-removal.html (503B)


      1 <!DOCTYPE html>
      2 <html class='reftest-wait'>
      3  <link rel='stylesheet' type='text/css' href='style.css'>
      4  <script>
      5    function loadHandler()
      6    {
      7      document.getElementById('t').removeAttribute('placeholder');
      8      document.getElementById('moz').removeAttribute('placeholder');
      9      document.documentElement.className = '';
     10    }
     11  </script>
     12  <body onload='loadHandler();'>
     13    <textarea id='t' placeholder='foo'></textarea>
     14    <textarea id='moz' placeholder='bar'></textarea>
     15  </body>
     16 </html>