Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -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>