1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

fixup! Base: Add a pseudo-element test page

This commit is contained in:
Sam Atkins 2022-02-25 17:28:34 +00:00 committed by Andreas Kling
parent 5113128bc9
commit 8411ff3f14

View file

@ -56,6 +56,10 @@
content: "This should appear as a block, last."; content: "This should appear as a block, last.";
color: red; color: red;
} }
.fancy-list li::marker {
color: green;
}
</style> </style>
</head> </head>
<body> <body>
@ -66,5 +70,15 @@
</p> </p>
<p class="inline">There should be a sentence before this, and one after, forming a single paragraph.</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> <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> </body>
</html> </html>