blob: 23c0caa9042b5cbf3ad80dac9d6e259d671652f4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="/local/fileapi/resources/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>