summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html')
-rw-r--r--testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html b/testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html
new file mode 100644
index 0000000000..f130410e2a
--- /dev/null
+++ b/testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<meta charset=utf-8>
+<title>iframe focuses parent</title>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script>
+setup({explicit_done:true});
+var w = null;
+window.onload = function() {
+ window.onmessage = function(e) {
+ test(function() {
+ assert_equals(e.data, "PASS", 'Check result');
+ }, "Check result");
+ w.close();
+ w = null;
+ done();
+ };
+ w = window.open("support/iframe-focuses-parent-same-site-outer.html");
+}
+</script>