blob: 071c42452d9f8d7973a24404f75632c6bde23533 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html style="overflow-inline: scroll;">
<head>
<script>
document.addEventListener('DOMContentLoaded', async () => {
const link = document.createElement('link')
const slot = document.createElement('slot')
document.documentElement.appendChild(link)
const blob = new Blob()
const range = new Range()
await blob.arrayBuffer()
range.selectNode(document.documentElement)
range.surroundContents(slot)
setTimeout('location.reload()', 200)
})
</script>
</head>
</html>
|