summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/testdriver/click_window.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/infrastructure/testdriver/click_window.html')
-rw-r--r--testing/web-platform/tests/infrastructure/testdriver/click_window.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/infrastructure/testdriver/click_window.html b/testing/web-platform/tests/infrastructure/testdriver/click_window.html
new file mode 100644
index 0000000000..614a92478e
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/testdriver/click_window.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>TestDriver click method in window</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("load", () => {
+ let child = window.open("click_child.html");
+ child.addEventListener("load", () => {
+ let button = child.document.getElementById("button");
+ test_driver
+ .click(button)
+ .then(() => {
+ assert_equals(child.document.getElementById("log").textContent, "PASS");
+ done();
+ })
+ .catch(() => assert_unreached("click failed"));
+ });
+})
+</script>