| Index: third_party/WebKit/LayoutTests/transforms/translate-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/transforms/translate-expected.html b/third_party/WebKit/LayoutTests/transforms/translate-expected.html
|
| index 6ef8857196a7b485616c570b36c78ef22d7688ce..38867ca233afe875f7eb89a7f55be0bf8cbe751a 100644
|
| --- a/third_party/WebKit/LayoutTests/transforms/translate-expected.html
|
| +++ b/third_party/WebKit/LayoutTests/transforms/translate-expected.html
|
| @@ -7,7 +7,6 @@ div {
|
| }
|
| .container {
|
| transform: translate(100px, 100px);
|
| - background-color: red;
|
| transform-style: preserve-3d;
|
| perspective-origin: 150% 150%;
|
| perspective: 500px;
|
| @@ -19,12 +18,17 @@ div {
|
| transform: translate3d(100%, -200%, -500px);
|
| }
|
| #box3 {
|
| + transform: translate3d(0px, 0px, 10em);
|
| +}
|
| +#box4 {
|
| transform: translate(300px);
|
| }
|
| </style>
|
|
|
| <div class="container">
|
| + container
|
| <div id="box1">1</div>
|
| <div id="box2">2</div>
|
| + <div id="box3">3</div>
|
| </div>
|
| -<div id="box3">3</div>
|
| +<div id="box4">4</div>
|
|
|