Files
test/index.html
T
2020-03-18 17:40:05 +08:00

17 lines
592 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
<!-- You can also require other files to run in this process -->
<iframe src="https://www.nejery.com" width="800" height="600" style="width:800px; height: 800px"></iframe>
<script src="./renderer.js"></script>
</body>
</html>