| Index: LayoutTests/transforms/scale.html
|
| diff --git a/LayoutTests/transforms/scale.html b/LayoutTests/transforms/scale.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..682fa852401791ac5658513acee73023ab0753d4
|
| --- /dev/null
|
| +++ b/LayoutTests/transforms/scale.html
|
| @@ -0,0 +1,41 @@
|
| +<!DOCTYPE html>
|
| +<head>
|
| +<style>
|
| +div {
|
| + width: 100px;
|
| + height: 100px;
|
| + background-color: blue;
|
| +}
|
| +.container {
|
| + background-color: red;
|
| + perspective-origin: 150% 150%;
|
| + perspective: 500px;
|
| + scale: 0.5 1;
|
| +}
|
| +#box1 {
|
| + scale: 0.5 1;
|
| +}
|
| +#box2a {
|
| + scale: -2 3.5 0.2;
|
| + transform: translate(400px);
|
| +}
|
| +#box2b {
|
| + backface-visibility: visible;
|
| + scale: -2 3.5 0.2;
|
| + transform: translate(400px);
|
| +}
|
| +#box3 {
|
| + scale: 2 3.5 0.2;
|
| + transform: translate(200px, 100px);
|
| +}
|
| +</style>
|
| +</head>
|
| +
|
| +<body>
|
| +<div class="container">
|
| + <div id="box1">1</div>
|
| + <div id="box2a">2a</div>
|
| + <div id="box2b">2b</div>
|
| +</div>
|
| +<div id="box3">3</div>
|
| +</body>
|
|
|