1
0
Fork 0
firefox/dom/security/test/csp/file_connect-src.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
553 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1031530 - Test mapping of XMLHttpRequest to connect-src</title>
</head>
<body>
<script type="text/javascript">
try {
// Please note that file_testserver.sjs?foo does not return a response.
// For testing purposes this is not necessary because we only want to check
// whether CSP allows or blocks the load.
var xhr = new XMLHttpRequest();
xhr.open("GET", "file_testserver.sjs?foo", false);
xhr.send(null);
}
catch (e) { }
</script>
</body>
</html>