diff options
Diffstat (limited to '')
-rw-r--r-- | testing/web-platform/tests/fenced-frame/invalid-url.https.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/invalid-url.https.html b/testing/web-platform/tests/fenced-frame/invalid-url.https.html new file mode 100644 index 0000000000..4e17185d81 --- /dev/null +++ b/testing/web-platform/tests/fenced-frame/invalid-url.https.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<title>Test Navigate Fenced Frame to Invalid URL</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/common/utils.js"></script> +<script src="resources/utils.js"></script> +<script src="/common/utils.js"></script> + +<body> +<script> +promise_test(async (t) => { + attachFencedFrame('http://localhost:95101/fenced_frame.php'); +}, 'URL with invalid port specified'); + +</script> +</body> +</html> |