tor-browser

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

curved-borders-all-styles.html (489B)


      1 <html>
      2 
      3 <head>
      4 <title>testcase for bug #382721</title>
      5 <style>
      6 div {
      7 background: beige;
      8 margin: 1ex;
      9 padding: 1ex;
     10 border-radius: 3ex;
     11 }
     12 </style>
     13 <script>
     14 function ini() {
     15  var s,i,d;
     16  s=['none','hidden','dotted','dashed','solid',
     17     'double','groove','ridge','inset','outset'];
     18  for (i=0; i<s.length; i++) {
     19   d=document.createElement('div');
     20   d.style.border=d.innerHTML=s[i];
     21   document.body.appendChild(d);
     22 }}
     23 </script>
     24 </head>
     25 
     26 <body onload="ini()"></body>
     27 
     28 </html>