mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
59d61a083e
--HG-- extra : rebase_source : b27fcbff2d6f1a0d05e6698ef5fbc99e09366682
22 lines
561 B
HTML
22 lines
561 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_csp_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_csp_testserver.sjs?foo", false);
|
|
xhr.send(null);
|
|
}
|
|
catch (e) { }
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|