diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-02-25 17:28:34 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-25 19:35:34 +0100 |
commit | 8411ff3f1476080ba348bba1e454788ba55b7b04 (patch) | |
tree | a3db79397296eabe929804dc1c06a4eea1a2884b /Base/res | |
parent | 5113128bc9a7f904d43ba5b74f2e9ad02c597a73 (diff) | |
download | serenity-8411ff3f1476080ba348bba1e454788ba55b7b04.zip |
fixup! Base: Add a pseudo-element test page
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/html/misc/pseudo-elements.html | 14 |
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> |