1
0
Fork 0
firefox/browser/base/content/test/protectionsUI/file_protectionsUI_fetch.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

17 lines
458 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Testing the shield from fetch and XHR</title>
</head>
<body>
<p>Hello there!</p>
<script type="application/javascript">
function test_fetch() {
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
let url = "http://trackertest.org/browser/browser/base/content/test/protectionsUI/file_protectionsUI_fetch.js";
return fetch(url);
}
</script>
</body>
</html>