mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
14 lines
331 B
HTML
14 lines
331 B
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Testpage for CSP violation (inline script)</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
CSP violation test succeeded.
|
||
|
|
<script>
|
||
|
|
// This inline script would override the success string if loaded.
|
||
|
|
document.body.innerHTML = "CSP violation test failed.";
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|