Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / keyframes-unprefixed-01.html
blob5494eb01a9e2a7a3952f6c5719801adb5cac2d6e
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
4 <html lang="en">
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Keyframes test</title>
8 <style type="text/css" media="screen">
9 #box {
10 position: absolute;
11 left: 0;
12 top: 100px;
13 height: 100px;
14 width: 100px;
15 background-color: blue;
16 animation-duration: 1s;
17 animation-timing-function: linear;
18 animation-name: anim;
19 animation-fill-mode: forwards;
21 @keyframes anim {
22 from { left: 200px; }
23 to { left: 300px; }
25 </style>
26 <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>
27 <script type="text/javascript" charset="utf-8">
29 const expectedValues = [
30 // [time, element-id, property, expected-value, tolerance]
31 [1, "box", "left", 300, 1],
34 runAnimationTest(expectedValues);
36 </script>
37 </head>
38 <body>
39 This test verifies that the unprefixed @keyframes rule is correctly parsed and used.
40 <div id="box">
41 </div>
42 <div id="result">
43 </div>
44 </body>
45 </html>