diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/html/browsers/windows/browsing-context-names | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/html/browsers/windows/browsing-context-names')
17 files changed, 234 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/.gitkeep b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/.gitkeep diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/001-1.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/001-1.html new file mode 100644 index 000000000..d413c3019 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/001-1.html @@ -0,0 +1,8 @@ +<!doctype html> +001-1 +<script> +if (window.opener !== null) { + window.opener.postMessage("FAIL", "*"); +} +window.close(); +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/001.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/001.html new file mode 100644 index 000000000..2478cdc8f --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/001.html @@ -0,0 +1,22 @@ +<!doctype html> +<title>Link with target=_blank, rel=noreferrer</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<a href="001-1.html" rel="noreferrer" target="_blank">Link</a> +<script> +var t = async_test(); +var a; +t.step(function() { + a = document.getElementsByTagName("a")[0]; + a.click(); + //This is a bit hacky; if the test passes there isn't a link back to the parent + //window so we have to pass on a timeout. But opening the link could be slow in + //some cases, so there is some possibility of false passes + setTimeout(t.step_func(function() { + t.done(); + }), 1000); +}); + +onmessage = t.step_func(function() {assert_unreached("Opened window had a reference to opener")}); +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/002-1.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/002-1.html new file mode 100644 index 000000000..ca8a485de --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/002-1.html @@ -0,0 +1,8 @@ +<!doctype html> +002-1 +<script> +if (window.opener !== null) { + window.opener.postMessage("PASS", "*"); +} +window.close(); +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/002.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/002.html new file mode 100644 index 000000000..4a1df8e4d --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/002.html @@ -0,0 +1,25 @@ +<!doctype html> +<title>Link with target=_blank, no rel</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<a href="002-1.html" target="_blank">Link</a> +<script> +var a; +async_test(function(t) { + a = document.getElementsByTagName("a")[0]; + a.click(); + + // This is a bit hacky; if the test fails there isn't a link back to the parent + // window so we have to pass on a timeout. But opening the link could be slow in + // some cases, so there is some possibility of false fails + step_timeout(t.step_func(function() { + assert_unreached("Failed to get callback from opened window"); + }), 5000); + + onmessage = t.step_func(function(e) { + assert_equals(e.data, "PASS"); + t.done() + }); +}); +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/MANIFEST b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/MANIFEST new file mode 100644 index 000000000..efecf51e3 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/MANIFEST @@ -0,0 +1,4 @@ +001.html +support 001-1.html +002.html +support 002-1.html diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-existing.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-existing.html new file mode 100644 index 000000000..2eaba22f6 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-existing.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: Choose browsing context - the given name is same as an existing browsing context's name</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<iframe src="existing.html" style="display:none"></iframe> +<iframe name="existWin" style="display:none"></iframe> +<script> + +var t = async_test("The browsing context must be chosen if the given name is same as its name"); + +window.addEventListener("message", function (e) { + t.step(function() { + assert_equals(e.data.name, "existWin", "The browsing context name should be 'existWin'."); + }); + t.done(); +}, false); + +frames[0].onload = t.step_func(function(e) { + frames[0].do_test(); +}); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-parent.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-parent.html new file mode 100644 index 000000000..c771a8fd7 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-parent.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: Choose browsing context - the given name is '_parent'</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<iframe src="parent1.html" name="parentWin" style="display:none"></iframe> +<script> + +var t = async_test("The parent browsing context must be chosen if the given name is '_parent'"); + +window.addEventListener("message", function (e) { + t.step(function() { + assert_equals(e.data.name, "parentWin", "The browsing context name should be 'parentWin'."); + }); + t.done(); +}, false); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-self-1.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-self-1.html new file mode 100644 index 000000000..99d7fe7d3 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-self-1.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: Choose browsing context - the given name is '_self'</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<iframe src="self1.html" style="display:none"></iframe> +<script> + +var t = async_test("The current browsing context must be chosen if the given name is '_self'"); + +window.addEventListener("message", function (e) { + t.step(function () { + assert_equals(e.data.name, "selfWin1", "The browsing context name should be 'selfWin1'."); + }); + t.done(); +}, false); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-self-2.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-self-2.html new file mode 100644 index 000000000..e25a5b442 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-choose-self-2.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: Choose browsing context - the given name is empty string</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<iframe src="self2.html" style="display:none"></iframe> +<script> + +var t = async_test("The current browsing context must be chosen if the given name is empty string"); + +window.addEventListener("message", function (e) { + t.step(function () { + assert_equals(e.data.name, "selfWin2", "The browsing context name should be 'selfWin2'."); + }); + t.done(); +}, false); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-default-name.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-default-name.html new file mode 100644 index 000000000..0bad8e606 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/browsing-context-default-name.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: Browsing context - Default name</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<iframe src="message.html" style="display:none"></iframe> +<script> + +test(function () { + assert_equals(window.frames[0].name, "", "The browsing context should not have a default name."); +}, "A embedded browsing context has no default name"); + +test(function () { + var win = window.open("about:blank", "_blank"); + assert_equals(win.name, "", "The browsing context should not have a name."); + win.close(); +}, "A browsing context which is opened by window.open() method with '_blank' parameter has no default name"); + +//This test must be run when the current browsing context's name is not set +test(function () { + assert_equals(window.name, "", "The browsing context should not have a name."); +}, "A browsing context has no default name"); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/existing.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/existing.html new file mode 100644 index 000000000..13d2c6ab4 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/existing.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>This is a test page</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script> + +function do_test() { + window.open("message.html", "existWin"); +} + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/message.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/message.html new file mode 100644 index 000000000..90720d46a --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/message.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: post window's name to top browsing context</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script> + +top.postMessage({name: window.name}, "*"); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/parent1.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/parent1.html new file mode 100644 index 000000000..fb34b2fe7 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/parent1.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: browsing context name - parent</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<iframe src="parent2.html"></iframe> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/parent2.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/parent2.html new file mode 100644 index 000000000..34eb1c76b --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/parent2.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: browsing context name - parent</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script> + +window.open("message.html", "_parent"); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/self1.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/self1.html new file mode 100644 index 000000000..2c8e3a414 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/self1.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: browsing context name - self</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script> + +window.name = "selfWin1"; +var win = window.open("message.html", "_self"); +win.close(); + +</script> diff --git a/testing/web-platform/tests/html/browsers/windows/browsing-context-names/self2.html b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/self2.html new file mode 100644 index 000000000..57276fada --- /dev/null +++ b/testing/web-platform/tests/html/browsers/windows/browsing-context-names/self2.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: browsing context name - self</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<script> + +window.name = "selfWin2"; +var win = window.open("message.html", ""); +win.close(); + +</script> |