summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/parsing/opacity-computed.html
blob: 27d9316415f24bf8e398cc992508b0036935291c (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
<!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");

</script>
</body>
</html>