tor-browser

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

align.html (432B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <link rel="match" href="align-ref.html">
      4 <style>
      5 hr {
      6  width: 100px;
      7 }
      8 </style>
      9 
     10 <hr align=>
     11 <hr align=left>
     12 <hr align=center>
     13 <hr align=right>
     14 <hr align=foobar>
     15 
     16 <script>
     17 // Test the IDL attribute
     18 const values = ['', 'left', 'center', 'right', 'foobar'];
     19 values.forEach(value => {
     20  const hr = document.createElement('hr');
     21  hr.align = value;
     22  document.body.appendChild(hr);
     23 });
     24 </script>