summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/testdriver/click_iframe_crossorigin.sub.html
blob: df2b4477cacfe6ca766cd97faa441a651e9f1d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset="utf-8">
<title>TestDriver click on a document in an 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>

<script>
setup({single_test: true});
addEventListener("message", (msg) => {
    if (msg.data === "PASS") {
        done();
    } else if (msg.data === "FAIL") {
        assert_unreached("click failed")
    }
});
</script>

<!-- Make sure we add the event listener before loading the iframe, to avoid
potentially missing messages from the child. -->
<iframe src="https://{{host}}:{{ports[https][1]}}/infrastructure/testdriver/click_child_testdriver.html"></iframe>