From 31dddee3269c469c537caad0793a101a7423ab05 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Wed, 31 Aug 2016 17:31:21 +0200 Subject: [PATCH] Add colorize test page (#151) --- test/colorize.html | 55 ++++++++++++++++++++++++++++++++++++++++++++++ test/index.html | 2 ++ 2 files changed, 57 insertions(+) create mode 100644 test/colorize.html diff --git a/test/colorize.html b/test/colorize.html new file mode 100644 index 00000000..1ee4bb31 --- /dev/null +++ b/test/colorize.html @@ -0,0 +1,55 @@ + + + + + + + + +

Colorize example

+ +
+/* Some example CSS */
+
+@import url("something.css");
+
+body {
+  margin: 0;
+  padding: 3em 6em;
+  font-family: tahoma, arial, sans-serif;
+  color: #000;
+}
+
+#navigation a {
+  font-weight: bold;
+  text-decoration: none !important;
+}
+
+h1 {
+  font-size: 2.5em;
+}
+
+h2 {
+  font-size: 1.7em;
+}
+
+h1:before, h2:before {
+  content: "some contents";
+}
+
+code {
+  font-family: courier, monospace;
+  font-size: 80%;
+  color: #418A8A;
+}
+
+ + + + + + \ No newline at end of file diff --git a/test/index.html b/test/index.html index 0ef435df..3308e1fa 100644 --- a/test/index.html +++ b/test/index.html @@ -18,6 +18,8 @@ Jump to:  |  [scrollable element]  |  +[colorize element] + |  [cross origin broken]  |  [cross origin good]