forked from w3c/csswg-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transition-001.html
82 lines (77 loc) · 4.1 KB
/
transition-001.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Transitions Test: Parsing transition shorthand</title>
<meta name="assert" content="Test checks that transition shorthand values are parsed properly">
<link rel="help" title="2.5. The 'transition' Shorthand Property" href="http://www.w3.org/TR/css3-transitions/#transition-shorthand-property">
<link rel="author" title="Rodney Rehm" href="http://rodneyrehm.de/en/">
<meta name="flags" content="dom">
<script src="/resources/testharness.js" type="text/javascript"></script>
<script src="/resources/testharnessreport.js" type="text/javascript"></script>
<script src="./support/vendorPrefix.js" type="text/javascript"></script>
<script src="./support/helper.js" type="text/javascript"></script>
<script id="metadata_cache">/*
{
"parse '1s'": {},
"parse '1s 2s'": {},
"parse '1s 2s ease-in'": {},
"parse '1s ease-in 2s'": {},
"parse 'ease-in 1s 2s'": {},
"parse '1s width'": {},
"parse 'width 1s'": {},
"parse '1s width 2s'": {},
"parse '1s 2s width ease-in'": {},
"parse '1s ease-in 2s width'": {},
"parse 'width ease-in 1s 2s'": {},
"parse 'width .1s ease-in .2s'": {}
}
*/</script>
</head>
<body>
<!-- required by testharnessreport.js -->
<div id="log"></div>
<!-- elements used for testing -->
<div id="container">
<div id="transition"></div>
</div>
<script>
var transition = document.getElementById('transition');
var ease = 'cubic-bezier(0.25, 0.1, 0.25, 1)';
var easeIn = 'cubic-bezier(0.42, 0, 1, 1)';
// Note that order is important in this property. The first value that can be parsed as a time is assigned to
// the transition-duration. The second value that can be parsed as a time is assigned to transition-delay.
// [<‘transition-property’> || <‘transition-duration’> || <‘transition-timing-function’> || <‘transition-delay’> [, [<‘transition-property’> || <‘transition-duration’> || <‘transition-timing-function’> || <‘transition-delay’>]]*
var values = {
// [property, duration, timing, delay]
// random order
'1s' : ["all", "1s", ease, "0s"],
'1s 2s' : ["all", "1s", ease, "2s"],
'1s 2s ease-in' : ["all", "1s", easeIn, "2s"],
'1s ease-in 2s' : ["all", "1s", easeIn, "2s"],
'ease-in 1s 2s' : ["all", "1s", easeIn, "2s"],
'1s width' : ["width", "1s", ease, "0s"],
'width 1s' : ["width", "1s", ease, "0s"],
'1s width 2s' : ["width", "1s", ease, "2s"],
'1s 2s width ease-in' : ["width", "1s", easeIn, "2s"],
'1s ease-in 2s width' : ["width", "1s", easeIn, "2s"],
'width ease-in 1s 2s' : ["width", "1s", easeIn, "2s"],
'width .1s ease-in .2s' : ["width", "0.1s", easeIn, "0.2s"]
};
for (var key in values) {
if (Object.prototype.hasOwnProperty.call(values, key)) {
test(function() {
setStyle('#transition', {
'transition': key
});
// WET much?
assert_equals(computedStyle(transition, 'transition-property'), values[key][0], "transition-property");
assert_equals(computedStyle(transition, 'transition-duration'), values[key][1], "transition-duration");
assert_equals(computedStyle(transition, 'transition-timing-function'), values[key][2], "transition-timing-function");
assert_equals(computedStyle(transition, 'transition-delay'), values[key][3], "transition-delay");
}, "parse '" + key + "'");
}
}
</script>
</body>
</html>