| Index: LayoutTests/fast/css/style-scoped/style-scoped-keyframes.html
|
| diff --git a/LayoutTests/fast/css/style-scoped/style-scoped-keyframes.html b/LayoutTests/fast/css/style-scoped/style-scoped-keyframes.html
|
| deleted file mode 100644
|
| index 1cfa70b6af6919ca8638991559080a62f6334239..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/css/style-scoped/style-scoped-keyframes.html
|
| +++ /dev/null
|
| @@ -1,60 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| -<head>
|
| -<style>
|
| -#box {
|
| - position: absolute;
|
| - left: 0;
|
| - top: 100px;
|
| - height: 100px;
|
| - width: 100px;
|
| - background: red;
|
| - -webkit-animation-duration: 1s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-name: "anim";
|
| -}
|
| -</style>
|
| -<script src="../../../animations/resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>
|
| -</head>
|
| -<body>
|
| - <div>
|
| - <style scoped>
|
| - @-webkit-keyframes "anim" {
|
| - from { left: 100px; }
|
| - to { left: 100px; }
|
| - }
|
| - </style>
|
| - <div>
|
| - <style scoped>
|
| - @-webkit-keyframes "anim" {
|
| - from { left: 200px; }
|
| - to { left: 200px; }
|
| - }
|
| - </style>
|
| - <div id="d1">
|
| - <style scoped>
|
| - @-webkit-keyframes "anim" {
|
| - from { left: 300px; }
|
| - to { left: 300px; }
|
| - }
|
| - </style>
|
| - </div>
|
| - </div>
|
| - </div>
|
| - <div id="result">
|
| - </div>
|
| -<script>
|
| -var d1 = document.querySelector("#d1");
|
| -var box = document.createElement('div');
|
| -box.id = "box";
|
| -d1.appendChild(box);
|
| -
|
| -const expectedValues = [
|
| - // [time, element-id, property, expected-value, tolerance]
|
| - [0.5, "box", "left", 300, 0],
|
| -];
|
| -
|
| -runAnimationTest(expectedValues);
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|