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,42 @@
<!DOCTYPE html>
<html><head>
<title>CSS Transforms API Test: transform preserve-3d</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-preserve-3d-1-ref.htm" rel="match">
<meta content="The transformed div should establishe a 3D rendering context" name="assert">
<style>
div {
height: 150px;
width: 150px;
}
.container {
background-color: red;
}
.transformed {
height: 300px;
position: relative;
top: -150px;
transform-origin: bottom left;
transform-style: preserve-3d;
transform: rotateX(60deg);
background-color: green;
}
.child {
transform-origin: top left;
transform: rotateX(30deg);
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 class="child">
</div>
</div>
</div>
</body></html>