blob: 43d9f728070a7f8b0b23c34c4d9cc21121e62439 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="temp-file-utils.js"></script>
<script>
const tempFileContent = "TEST";
const tempFileName = "test.tmp";
const path = createTempFile(tempFileName, tempFileContent);
window.parent.postMessage(path, "*");
</script>
</body>
</html>