summaryrefslogtreecommitdiff
path: root/Base/res
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-02-25 17:28:34 +0000
committerAndreas Kling <kling@serenityos.org>2022-02-25 19:35:34 +0100
commit8411ff3f1476080ba348bba1e454788ba55b7b04 (patch)
treea3db79397296eabe929804dc1c06a4eea1a2884b /Base/res
parent5113128bc9a7f904d43ba5b74f2e9ad02c597a73 (diff)
downloadserenity-8411ff3f1476080ba348bba1e454788ba55b7b04.zip
fixup! Base: Add a pseudo-element test page
Diffstat (limited to 'Base/res')
-rw-r--r--Base/res/html/misc/pseudo-elements.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/Base/res/html/misc/pseudo-elements.html b/Base/res/html/misc/pseudo-elements.html
index e0f98f3cc2..f67499ed85 100644
--- a/Base/res/html/misc/pseudo-elements.html
+++ b/Base/res/html/misc/pseudo-elements.html
@@ -56,6 +56,10 @@
content: "This should appear as a block, last.";
color: red;
}
+
+ .fancy-list li::marker {
+ color: green;
+ }
</style>
</head>
<body>
@@ -66,5 +70,15 @@
</p>
<p class="inline">There should be a sentence before this, and one after, forming a single paragraph.</p>
<p class="block">There should be a sentence before this, and one after, each as its own block.</p>
+
+ <ul class="fancy-list">
+ <li>This</li>
+ <li>Is</li>
+ <li>A</li>
+ <li>List</li>
+ <li>With</li>
+ <li>Green</li>
+ <li>Markers</li>
+ </ul>
</body>
</html>