challenges/r2 hard/assets/result.html

20 lines
440 B
HTML
Raw Normal View History

2023-09-18 12:28:15 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
window.addEventListener('message', function(e) {
if (
window.location.origin === 'file://' ||
window.location.origin === (e.origin || e.originalEvent.origin)
) {
document.documentElement.innerHTML = e.data
}
})
</script>
</body>
</html>