-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathopacity-computed.html
More file actions
47 lines (46 loc) · 1.96 KB
/
opacity-computed.html
File metadata and controls
47 lines (46 loc) · 1.96 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Color Level 3: getComputedStyle().opacity</title>
<link rel="help" href="https://www.w3.org/TR/css-color-3/#opacity">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("opacity", "1");
test_computed_value("opacity", "0.5");
test_computed_value("opacity", "0");
test_computed_value("opacity", "-2", "0");
test_computed_value("opacity", "3", "1");
test_computed_value("opacity", "-100%", "0");
test_computed_value("opacity", "50%", "0.5");
test_computed_value("opacity", "300%", "1");
test_computed_value("opacity", "calc(-50% - 50%)", "0");
test_computed_value("opacity", "calc(25% * 2)", "0.5");
test_computed_value("opacity", "calc(100% + 100%)", "1");
test_computed_value("opacity", "calc(-0.5 - 0.5)", "0");
test_computed_value("opacity", "calc(0.25 * 2)", "0.5");
test_computed_value("opacity", "calc(1 + 1)", "1");
test_computed_value("opacity", "clamp(50%, 0%, 70%)", "0.5");
test_computed_value("opacity", "clamp(50%, 80%, 70%)", "0.7");
test_computed_value("opacity", "clamp(50%, 60%, 70%)", "0.6");
test_computed_value("opacity", "min(50%, 0%)", "0");
test_computed_value("opacity", "min(0%, 50%)", "0");
test_computed_value("opacity", "max(50%, 0%)", "0.5");
test_computed_value("opacity", "max(0%, 50%)", "0.5");
test_computed_value("opacity", "min(-40%, 50%)", "0");
test_computed_value("opacity", "clamp(0.5, 0, 0.7)", "0.5");
test_computed_value("opacity", "clamp(0.5, 0.8, 0.7)", "0.7");
test_computed_value("opacity", "clamp(0.5, 0.6, 0.7)", "0.6");
test_computed_value("opacity", "min(0.5, 0)", "0");
test_computed_value("opacity", "min(0, 0.5)", "0");
test_computed_value("opacity", "max(0.5, 0)", "0.5");
test_computed_value("opacity", "max(0, 0.5)", "0.5");
test_computed_value("opacity", "min(-0.4, 0.5)", "0");
</script>
</body>
</html>