mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
22 lines
469 B
HTML
22 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Transforms API Test: transform rotateY</title>
|
|
<link href="mailto:ylzcylx@gmail.com" rel="author" title="loveky">
|
|
<style>
|
|
div {
|
|
height: 150px;
|
|
width: 150px;
|
|
}
|
|
.container {
|
|
border: 1px solid black;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p>You should only see a GREEN box if this test passes!</p>
|
|
<div class="container">
|
|
</div>
|
|
|
|
</body></html> |