blob: 2c96faf32d938f12896c79f4e0e0dc5731d5274b [file] [log] [blame]
<title>Waiting for paste</title>
<body>
<script>
document.body.contentEditable = true;
document.body.addEventListener('paste', (event) => {
Array.prototype.forEach.call(event.clipboardData.items, (item) => {
if (item.type != 'text/rtf') {
return;
}
item.getAsString((s) => {
document.title = s;
});
});
});
</script>