Source code
Revision control
Copy as Markdown
Other Tools
<html>
<head>
<title>CSP Base-URI Violation Test </title>
</head>
<body>
<h1> Crashing the Base Element</h1>
</body>
<script>
"use strict";
window.violate = ()=>{
document.head.innerHTML = "";
const b = document.createElement("base");
document.head.append(b);
};
</script>
</html>