mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
26 lines
618 B
HTML
26 lines
618 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>Reference File</title>
|
|
<link href="mailto:joy.xczhang@gmail.com" rel="author" title="Zhang Xiaochong">
|
|
<style type="text/css">
|
|
.container {
|
|
position: relative;
|
|
}
|
|
.ref {
|
|
background-color: green;
|
|
height: 160px;
|
|
left: 5px;
|
|
position: absolute;
|
|
top: 5px;
|
|
width: 160px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if there is a filled green square and no red.</p>
|
|
<div class="container">
|
|
<div class="ref"></div>
|
|
</div>
|
|
|
|
|
|
</body></html> |