18 lines
410 B
HTML
18 lines
410 B
HTML
<!DOCTYPE html>
|
|
<meta content="ahem" name="flags">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style>
|
|
.container {
|
|
font: 100px/1 Ahem;
|
|
line-height: 100px;
|
|
}
|
|
.container > span {
|
|
margin-left: 50px;
|
|
clip-path: circle(50%);
|
|
color: green;
|
|
}
|
|
</style>
|
|
<p>Test passes if there is a filled green circle with radius 50px.
|
|
<div class="container">
|
|
<span>X</span>
|
|
</div>
|