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