mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
29 lines
No EOL
552 B
HTML
29 lines
No EOL
552 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link href="mailto:badea@adobe.com" rel="author" title="Catalin Badea">
|
|
<style>
|
|
.flex {
|
|
height: 100px;
|
|
width: 100px;
|
|
background-color: green;
|
|
}
|
|
.region {
|
|
width: 100px;
|
|
background-color: gray;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li>Test passes if you see a green square inside a gray square.</li>
|
|
<li>You shouldn't see any red.</li>
|
|
</ul>
|
|
<div class="region">
|
|
<div class="flex">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body></html> |