blob: b5c32f26d8df952e0e5e673af41473e2f8474027 (
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
49
50
51
52
53
54
55
56
|
<!DOCTYPE html>
<html class="reftest-wait">
<meta name="assert" content="This should resume the animation after unhiding the iframe.">
<meta name="fuzzy" content="1;0-50">
<title>CSS Test (Animations): Unhiding iframe visibility should restart animation. </title>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=616270">
<link rel="match" href="toggle-animated-iframe-visibility-ref.html">
<script src="/common/reftest-wait.js"></script>
<div id="container"></div>
<div id="log"></div>
<script>
var container;
var block;
var logDiv;
function verifyVisibility(expected_visibility, message) {
if (getComputedStyle(block).visibility !== expected_visibility)
logDiv.innerHTML = `FAIL: ${message}`;
}
async function runTest() {
var animation = block.animate(
{ transform: [ 'rotate(0deg)', 'rotate(180deg)' ] },
{
duration: 10000000,
delay: -5000000,
easing: 'cubic-bezier(0, 1, 1, 0)'
});
await animation.ready;
container.style.visibility = 'hidden';
requestAnimationFrame(() => {
verifyVisibility('hidden', 'style.visibility should be hidden');
container.style.visibility = 'visible';
requestAnimationFrame(() => {
verifyVisibility('visible', 'style.visiblity should be visible');
takeScreenshot();
});
});
}
window.onload = function () {
logDiv = document.getElementById('log');
container = document.getElementById('container');
block = document.createElement('iframe');
container.appendChild(block);
block.onload = runTest;
block.src = 'resources/block.html';
};
</script>
|