blob: a530837392d617af1fe3024b13ca25a86f9c1902 (
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
57
58
59
60
61
62
63
|
<!DOCTYPE html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script>
let chained_timeout_test = async_test("Chained setTimeout test");
const max_call_depth = 3;
const delay_ms = 10;
function testInitialStates(depth) {
assert_true(1 <= depth && depth <= max_call_depth);
chained_timeout_test.step_timeout(() => {
let test_name = "Call-depth=" + depth + ": initial activation states are false";
test(() => {
assert_false(navigator.userActivation.isActive);
assert_false(navigator.userActivation.hasBeenActive);
}, test_name);
if (depth < max_call_depth)
testInitialStates(depth+1);
else
test_driver.click(document.body);
}, delay_ms);
}
function testFinalStates(depth) {
assert_true(1 <= depth && depth <= max_call_depth);
chained_timeout_test.step_timeout(() => {
let test_name = "Call-depth=" + depth + ": after-click activation states are true";
test(() => {
assert_true(navigator.userActivation.isActive);
assert_true(navigator.userActivation.hasBeenActive);
}, test_name);
if (depth < max_call_depth)
testFinalStates(depth+1);
else
chained_timeout_test.done();
}, delay_ms)
}
function run() {
window.addEventListener("click", event => {
testFinalStates(1);
});
testInitialStates(1);
}
</script>
</head>
<body onload="run()">
<h1>User activation state in chained setTimeout calls</h1>
<p>Tests that user activation state is visible in arbitrary call depth of setTimeout.</p>
<ol id="instructions">
<li>Click anywhere in the document.
</ol></body>
</html>
|