浏览代码

Base: Move HTML test pages into /home/anon/html

Also add a simple test page for inline style sheets.
Andreas Kling 5 年之前
父节点
当前提交
17c06d7c9a
共有 3 个文件被更改,包括 24 次插入0 次删除
  1. 24 0
      Base/home/anon/html/css.html
  2. 0 0
      Base/home/anon/html/lorem.html
  3. 0 0
      Base/home/anon/html/small.html

+ 24 - 0
Base/home/anon/html/css.html

@@ -0,0 +1,24 @@
+<html>
+    <head>
+        <title>CSS test</title>
+        <style type="text/css">
+            #foo {
+                background-color: #ff0000;
+                color: #00ffff;
+            }
+            #bar {
+                background-color: #00ff00;
+                color: #ff00ff;
+            }
+            #baz {
+                background-color: #0000ff;
+                color: #ffff00;
+            }
+        </style>
+    </head>
+    <body>
+        <div id="foo">This is foo</div>
+        <div id="bar">This is bar</div>
+        <div id="baz">This is baz</div>
+    </body>
+</html>

+ 0 - 0
Base/home/anon/lorem.html → Base/home/anon/html/lorem.html


+ 0 - 0
Base/home/anon/small.html → Base/home/anon/html/small.html