blob: fc5a3262970b83ee9eea23f7a82e1929d6841e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
"use strict"
let url = new URL(location);
let img = new Image();
img.src = `http://${url.searchParams.get("domain")}/tests/toolkit/components/extensions/test/mochitest/file_image_bad.png`;
document.body.appendChild(img);
</script>
</body>
</html>
|