blob: f31fa8795eac640b9efc7010b9546137d693017c [file] [log] [blame]
<html><head><title>iframe test</title></head><body>
<script type="text/javascript">
const frame = document.createElement('iframe');
frame.src = URL.createObjectURL(new Blob(['<html><head></head><body>Hello world!</body>'], { type: 'text/html' }));
document.body.appendChild(frame);
</script>
</body>
</html>