test rendering font-family for monospaced fonts
authorAntoine Musso <hashar@users.mediawiki.org>
Thu, 5 Jan 2012 09:16:13 +0000 (09:16 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Thu, 5 Jan 2012 09:16:13 +0000 (09:16 +0000)
follow r108112

docs/uidesign/monospace.html [new file with mode: 0644]

diff --git a/docs/uidesign/monospace.html b/docs/uidesign/monospace.html
new file mode 100644 (file)
index 0000000..77da3b9
--- /dev/null
@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+       <style type="text/css">
+               pre {
+                       border: 1px dashed #AAA;
+                       background-color: #E0E0E0;
+                       color: #000000;
+                       margin: 1em 10%;
+                       padding: 0.5em;
+               }
+       </style>
+</head>
+<body>
+<p>
+This page let you test the rendering font-family declaration for monospaced fonts. TODO: add some references here :-)
+</p>
+
+<pre style='
+font-family: monospace;'>
+font-family: monospace;
+</pre>
+
+<pre style='
+font-family: "Courier New";'>
+font-family: "Courier New";
+</pre>
+
+<pre style='
+font-family: Courier;'>
+font-family: Courier;
+</pre>
+
+
+<pre style='
+font-family: monospace, "Courier New";'>
+font-family: monospace, "Courier New";
+</pre>
+
+<pre style='
+font-family: monospace, Courier;'>
+font-family: monospace, Courier;
+</pre>
+
+<pre style='
+font-family: monospace, Verdana;'>
+font-family: monospace, Verdana;
+</pre>
+