summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/animations/longhand-timing-function.html
blob: 7242d01525a21584fe627e75673a1de4d2dddb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>

<html>
<head>
    <style type="text/css" media="screen">
        .box {
            position: relative;
            height: 100px;
            width: 100px;
            margin: 20px;
            background-color: blue;
        }

        #movers.moved > .box {
            -webkit-animation: move 1s linear;
        }

        #movers > #test {
            -webkit-animation-iteration-count: 1;
        }
        
        @-webkit-keyframes move {
            from { left: 0px;   }
            to   { left: 400px; }
        }
    </style>
    <script src="animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" charset="utf-8">
        if (window.layoutTestController)
            layoutTestController.waitUntilDone();

          const expectedValues = [
            // [animation-name, time, element-id, property, expected-value, tolerance]
            ["move", 0.5, "control", "left", 200, 10],
            ["move", 0.5, "test", "left", 200, 10],
          ];

        function setupTest()
        {
            document.getElementById('movers').className = 'moved';
            runAnimationTest(expectedValues);
        }

        window.addEventListener('load', function() {
            window.setTimeout(setupTest, 0);
        }, false);
    </script>
</head>
<body>
    <p>Animations should both use a linear timing function.</p>
    <div id="movers">
        <div id="control" class="box"></div>
        <div id="test" class="box"></div>
    </div>
    <div id="result"></div>
</body>
</html>