summaryrefslogtreecommitdiffstats
path: root/servo/components/style/properties/properties.html.mako
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /servo/components/style/properties/properties.html.mako
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'servo/components/style/properties/properties.html.mako')
-rw-r--r--servo/components/style/properties/properties.html.mako31
1 files changed, 31 insertions, 0 deletions
diff --git a/servo/components/style/properties/properties.html.mako b/servo/components/style/properties/properties.html.mako
new file mode 100644
index 0000000000..5c51593517
--- /dev/null
+++ b/servo/components/style/properties/properties.html.mako
@@ -0,0 +1,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>