| Index: LayoutTests/animations/interpolation/position-interpolation.html
|
| diff --git a/LayoutTests/animations/interpolation/position-interpolation.html b/LayoutTests/animations/interpolation/position-interpolation.html
|
| index 3feb578b0dd7a1f33982886c409ce350778bbdea..8ba88c5149c3a9fb349300abb35755c113e76d7b 100644
|
| --- a/LayoutTests/animations/interpolation/position-interpolation.html
|
| +++ b/LayoutTests/animations/interpolation/position-interpolation.html
|
| @@ -1,7 +1,7 @@
|
| <!DOCTYPE html>
|
| <meta charset="UTF-8">
|
| <style>
|
| -.container {
|
| +.parent {
|
| position: relative;
|
| display: inline-block;
|
| height: 10px;
|
| @@ -12,13 +12,14 @@
|
| height: 10px;
|
| background-color: black;
|
| left: 10px;
|
| + position: 10px;
|
| }
|
| .expected {
|
| background-color: green;
|
| }
|
| </style>
|
| <template id="target-template">
|
| - <div class="container">
|
| + <div class="parent">
|
| <div class="target"></div>
|
| </div>
|
| </template>
|
| @@ -30,6 +31,7 @@ assertNoInterpolation({
|
| from: 'absolute',
|
| to: 'static',
|
| });
|
| +
|
| assertInterpolation({
|
| property: 'position',
|
| from: '',
|
|
|