summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/testdriver/click_nested.html
blob: 378b9e8c0f1411afdf7b93f7e93c03d05af227c7 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>TestDriver click method with multiple windows and nested iframe</title>
<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>

<iframe src="about:blank"></iframe>

<script>
setup({single_test: true});

window.open("about:blank")
var child = window.open("click_outer_child.html")
window.open("about:blank")

addEventListener("load",() => {
    child.addEventListener("load", () => {
        let doc = child.frames[2].document;
        let button = doc.getElementById("button");
        test_driver
            .click(button)
            .then(() => {
                assert_equals(doc.getElementById("log").textContent, "PASS");
                done();
            })
            .catch(() => assert_unreached("click failed"));
    });
});
</script>