mirror of
https://github.com/servo/servo
synced 2026-05-10 09:02:30 +02:00
28 lines
596 B
HTML
28 lines
596 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Transforms Reference File</title>
|
|
<link rel="author" title="Amol Shanbhag" href="mailto:amolvshanbhag@yahoo.com">
|
|
<link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
|
|
<style type="text/css">
|
|
div{
|
|
position: absolute;
|
|
}
|
|
.greenSquare {
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
|
|
}
|
|
p{
|
|
padding-top: 130px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="greenSquare"></div>
|
|
<p>The test passes if there is a green square and no red.</p>
|
|
</body>
|
|
</html>
|