tor-browser

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

properties.html.mako (1006B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4     <meta charset="utf-8">
      5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      6     <title>Supported CSS properties in Servo</title>
      7     <link rel="stylesheet" type="text/css" href="../normalize.css">
      8     <link rel="stylesheet" type="text/css" href="../rustdoc.css">
      9     <link rel="stylesheet" type="text/css" href="../light.css">
     10 </head>
     11 <body class="rustdoc">
     12     <section id='main' class="content mod">
     13       <h1 class='fqn'><span class='in-band'>CSS properties currently supported in Servo</span></h1>
     14       % for kind, props in sorted(properties.items()):
     15       <h2>${kind.capitalize()}</h2>
     16       <table>
     17         <tr>
     18           <th>Name</th>
     19           <th>Pref</th>
     20         </tr>
     21         % for name, data in sorted(props.items()):
     22           <tr>
     23             <td><code>${name}</code></td>
     24             <td><code>${data['pref'] or ''}</code></td>
     25           </tr>
     26         % endfor
     27       </table>
     28       % endfor
     29     </section>
     30 </body>
     31 </html>