| Index: LayoutTests/animations/interpolation/position-interpolation.html
|
| diff --git a/LayoutTests/animations/interpolation/position-interpolation.html b/LayoutTests/animations/interpolation/position-interpolation.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dc2e497cfbbc71e837eb95ad35127da05d626696
|
| --- /dev/null
|
| +++ b/LayoutTests/animations/interpolation/position-interpolation.html
|
| @@ -0,0 +1,35 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="UTF-8">
|
| +<style>
|
| +.container {
|
| + position: relative;
|
| + display: inline-block;
|
| + height: 10px;
|
| + margin: 0px;
|
| +}
|
| +.target {
|
| + width: 10px;
|
| + height: 10px;
|
| + background-color: black;
|
| + left: 10px;
|
| +}
|
| +.expected {
|
| + background-color: green;
|
| +}
|
| +</style>
|
| +<template id="target-template">
|
| + <div class="container">
|
| + <div class="target"></div>
|
| + </div>
|
| +</template>
|
| +<body>
|
| +<script src="resources/interpolation-test.js"></script>
|
| +<script>
|
| +assertNoInterpolation({
|
| + method: 'Web Animations',
|
| + property: 'position',
|
| + from: 'absolute',
|
| + to: 'static'
|
| +});
|
| +</script>
|
| +</body>
|
|
|