mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Transforms API Test: transform rotateY</title>
|
||||
<link href="mailto:ylzcylx@gmail.com" rel="author" title="loveky">
|
||||
<link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help">
|
||||
<link href="reference/transofrmed-rotateY-1-ref.htm" rel="match">
|
||||
<meta content="The transformed div should rotate 90 degrees" name="assert">
|
||||
<style>
|
||||
div {
|
||||
height: 150px;
|
||||
width: 150px;
|
||||
}
|
||||
.container {
|
||||
border: 1px solid black;
|
||||
background-color: green;
|
||||
}
|
||||
.transformed {
|
||||
transform: rotateY(90deg);
|
||||
background-color: red;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>You should only see a GREEN box if this test passes!</p>
|
||||
<div class="container">
|
||||
<div class="transformed"></div>
|
||||
</div>
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue