tor-browser

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

1410028.html (319B)


      1 <!doctype html>
      2 <div></div>
      3 <script>
      4 let setStyle = (el, props) => {
      5  for (prop in props)
      6    el.style.setProperty(prop, props[prop]);
      7 };
      8 
      9 setStyle(document.querySelector('div'), {
     10  all: 'initial',
     11  'background-color': 'blue',
     12  display: 'block',
     13  width: '100px',
     14  height: '100px',
     15  padding: '10px'
     16 });
     17 </script>