forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcubic-bezier-overflow-length.html
51 lines (49 loc) · 1.64 KB
/
cubic-bezier-overflow-length.html
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
<!doctype html>
<html>
<head>
<title>cubic-bezier value overflow: Lengths</title>
<style>
.box {
position: relative;
left: 0;
height: 100px;
width: 100px;
margin: 10px;
background-color: blue;
transition: left 1s linear;
}
.animating > .box {
left: 400px;
}
</style>
<script src="../animations/resources/animation-test-helpers.js"></script>
<script>
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
[0.50, "box1", "left", 488, 4],
[0.95, "box1", "left", 440, 4],
[0.10, "box2", "left", -55, 4],
[0.50, "box2", "left", 145, 4],
[0.95, "box2", "left", 432, 4],
[0.10, "box3", "left", -106, 4],
[0.50, "box3", "left", -441, 4],
[0.15, "box4", "left", 513, 4],
[0.50, "box4", "left", 200, 4],
[0.80, "box4", "left", -98, 4],
];
function setupTest() {
document.getElementById('container').className = 'animating';
}
runTransitionTest(expectedValues, setupTest);
</script>
</head>
<body>
<div id="container">
<div class="box" id="box1" style="transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div>
<div class="box" id="box2" style="transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div>
<div class="box" id="box3" style="transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
<div class="box" id="box4" style="transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div>
</div>
<div id="result"></div>
</body>
</html>