mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
13 lines
254 B
HTML
13 lines
254 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
div {
|
|
border: 2px solid black;
|
|
height: 30px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there is a letter "i" in the box below.</p>
|
|
<div>i</div>
|
|
</body>
|