summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/responsive/opacity.html
blob: 0bedfc879a5a608400db3c0957375f7d0a805fc4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id='container'>
    <div id='element'></div>
</div>
<script>

'use strict';
var container = document.getElementById('container');
var element = document.getElementById('element');

var properties = [
    'fillOpacity',
    'floodOpacity',
    'opacity',
    'shapeImageThreshold',
    'stopOpacity',
    'strokeOpacity',
];

for (var property of properties) {
    test(function() {
        var initialKeyframe = {};
        initialKeyframe[property] = 'inherit';
        var finalKeyframe = {};
        finalKeyframe[property] = '0.5';
        var keyframes = [ initialKeyframe, finalKeyframe ];

        container.style[property] = 1;
        var player = element.animate(keyframes, 10);

        player.pause();
        player.currentTime = 5;
        assert_equals(getComputedStyle(element)[property], '0.75');

        container.style[property] = 0.25;
        assert_equals(getComputedStyle(element)[property], '0.375');

        container.style[property] = -0.5; // clamps to 0
        assert_equals(getComputedStyle(element)[property], '0.25');

        container.style[property] = 2; // clamps to 1
        assert_equals(getComputedStyle(element)[property], '0.75');
    }, property + ' responsive to inherited changes');
}

</script>